Is it possible to use PHP to download multiple files at once? I've been working on a downloads site and this is kind of an issue for me. Thanks.
While I believe it might be possible to have PHP send multiple files to the user, my advice would be to create a .zip archive of the requested files and send that to the user. If the files are large, you could run into timeout issues on your server and users would certainly benefit from the faster response. Good luck!