Download Multiple Images from a website in one go
Now this post will be a bit of technical, i was just trying to write a neat little script to download all the images from national geography photo contest images (and of course not wanting to do it manually).
So i developed a script in php, which would require you to have a working internet connection of course, and a apache server setup or anything similar (like tomcat may be) where you can run your php file on browser. In the file crawl.php i am going to share, you can even change the url to make it work for some similar url where images are hosted. The file also needs a basic php file simplehtmldom.php to be in the same folder.
The output will create a file a.txt with the link of images. Now you can use any downloader to get the images in required places.
I used :
wget -i a.txtit will download all the links in the current folder.
Hope it was of some use, you can comment in case of any queries or clarifications.