web_master Posted July 31, 2008 Share Posted July 31, 2008 Hi, How can I download more than 1 file with one click? <?php // Files $file_01 = "folder/file_01.wma"; $file_02 = "folder/file_02.wma"; $file_02 = "folder/file_02.wma"; print "<a href="???">download all files with one click</a>"; ?> Link to comment https://forums.phpfreaks.com/topic/117482-download-8-files-with-1-click/ Share on other sites More sharing options...
samshel Posted July 31, 2008 Share Posted July 31, 2008 as far as i know it is difficult to do this.. you can zip them all and give it for download? Link to comment https://forums.phpfreaks.com/topic/117482-download-8-files-with-1-click/#findComment-604313 Share on other sites More sharing options...
web_master Posted July 31, 2008 Author Share Posted July 31, 2008 samshel, I know for a zip-version, but... this is the radio-program with 8 tile, and some people can play it (stream) online, and some can download files. So, to simplify download I can give a solution for a visitors to download files with one click... Link to comment https://forums.phpfreaks.com/topic/117482-download-8-files-with-1-click/#findComment-604320 Share on other sites More sharing options...
nEJC Posted July 31, 2008 Share Posted July 31, 2008 (As far as I know) You can't do it from PHP on server side - browser requests one resource and expects one reply. The only way to do this would be to force browser to do 8 requests on button click with JavaScript. But do you really want that? It would kill your server.... ??? Link to comment https://forums.phpfreaks.com/topic/117482-download-8-files-with-1-click/#findComment-604335 Share on other sites More sharing options...
web_master Posted July 31, 2008 Author Share Posted July 31, 2008 ok, if no solution for that, I will give 8 links for download... thanks people! Link to comment https://forums.phpfreaks.com/topic/117482-download-8-files-with-1-click/#findComment-604359 Share on other sites More sharing options...
nEJC Posted July 31, 2008 Share Posted July 31, 2008 I didn't say it can't be done - only not from PHP. Take a look at this for JS example. Link to comment https://forums.phpfreaks.com/topic/117482-download-8-files-with-1-click/#findComment-604361 Share on other sites More sharing options...
web_master Posted July 31, 2008 Author Share Posted July 31, 2008 nEJC, THANXs, it will be a good solution! Link to comment https://forums.phpfreaks.com/topic/117482-download-8-files-with-1-click/#findComment-604378 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.