Im looking to create a form where the user will select from a list of brochures. 10 in total.
They may only want to download 3 brochures, or 6, or 1, or 9, but the idea being they select what brochures they want and then a script combiles a zip file containg the required brochures.
Can anyone suggest anything?
PHP has a Zip extension for this UseCase
Example from the manual page for ZipArchive::addFile
So, all you have to do is add the files the user selected to the ZipArchive and then send the Archive via header():