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
|