Hi,
I am trying to create a ZIP file using php. I would like the zip file to add files to it so I can download it. I have created a basic design of what i am looking to further develop. If I can get this working, I can figure out the rest.
I would like to add files to a zip file so it can be downloaded by a user.
$zip=new ZipArchive;
$zip->addFile('http://www.google.com/logos/2011/lucilleball11-sr.png', 'picture1');
forceDownload($zip);