Need Help With Images

Status
Not open for further replies.

Xhaoser

Beta member
Messages
2
Say i am on a site with 1000's of free images available,
http://(Site)/Folder/Folder/Folder/212000.jpg
How can i download say 212000 - 212999? I have tried a PHP script :

<?php
$i=1;
while ($i<10) {
echo "<a href=\"Site/Folder/Folder/Folder/$i.jpg\">File $i</a><br>";
$i++;
}
?>

Any ideas on how to fix?
File $i"; $i++; } ?> <--- This is the result.

And yes i have change the site and folders in the real script.
 
Status
Not open for further replies.
Back
Top Bottom