Okay, so, I have a website that has many different data sets available for download. Now, rather than going through and clicking each one individually and choosing to save each file to my PC, is there a way I can use PHP to loop through and force download all the files I want. I am the user in this case and have no access to server side. Most of the things I have read already are of people setting up their own website for other users to download things.
Details:
Now, I know that each file is located at say, blahblah.com/downloadset1, /downloadset2, ... , /downloadsetN
I can then set up a text box where I can enter each set number I want, separated by commas. For Example:[ 1, 2, 300, 4325 ]
From there I can have the script append the textbox values to the end of "blahblah.com/downloadset"
Which would give me an array of (blahblah.com/downloadset1, blahblah.com/downloadset2, blahblah.com/downloadset300, blahblah.com/downloadset4325)
Now those addresses have no content but the download itself, so if I would type them in my address bar, the download pop-up would just come up asking to save or open.
Can I write something into the script to make it loop through my new array of download addresses and start the downloads as "Save" without it asking me for each one?