wakawaka
03-19-2002, 05:11 PM
I know it is not really a hack, but i need "HELP!" on this
I used this script a minute ago:
<?
for($number = 10; $number <= 54; $number++)
{
$image = fopen ("http://www.arcticnightfall.com/berserk/pix/episode_01/image00$number.jpg", "r");
copy ($image, $image);
}
?>
and this is all it gave me:
Warning: fopen("http://www.arcticnightfall.com/berserk/pix/episode_01/image0010.jpg","r") - Unknown error in /home2/www/myurl/berserk/test/test.php on line 5
Warning: Unable to open '' for reading: No such file or directory in /home2/www/myurl/berserk/test/test.php on line 7
Warning: fopen("http://www.arcticnightfall.com/berserk/pix/episode_01/image0011.jpg","r") - Unknown error in /home2/www/myurl/berserk/test/test.php on line 5
Warning: Unable to open '' for reading: No such file or directory in /home2/www/myurl/berserk/test/test.php on line 7
first question is wHy did it not read the remote image, and 2nd question will it just keep writing over itself, or will my it actually save the images with their real names to my server?
I used this script a minute ago:
<?
for($number = 10; $number <= 54; $number++)
{
$image = fopen ("http://www.arcticnightfall.com/berserk/pix/episode_01/image00$number.jpg", "r");
copy ($image, $image);
}
?>
and this is all it gave me:
Warning: fopen("http://www.arcticnightfall.com/berserk/pix/episode_01/image0010.jpg","r") - Unknown error in /home2/www/myurl/berserk/test/test.php on line 5
Warning: Unable to open '' for reading: No such file or directory in /home2/www/myurl/berserk/test/test.php on line 7
Warning: fopen("http://www.arcticnightfall.com/berserk/pix/episode_01/image0011.jpg","r") - Unknown error in /home2/www/myurl/berserk/test/test.php on line 5
Warning: Unable to open '' for reading: No such file or directory in /home2/www/myurl/berserk/test/test.php on line 7
first question is wHy did it not read the remote image, and 2nd question will it just keep writing over itself, or will my it actually save the images with their real names to my server?