PHP Image code.

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 "File $i
"; $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.

Sponsor our Newsletter | Privacy Policy | Terms of Service