undertaker Posted August 29, 2011 Share Posted August 29, 2011 Hello, I made that script for previewing all the images in the directory: $dir = "../images"; $images = glob($dir . "*.jpg"); foreach($images as $image) { echo $image; } Now what i would like to do is to put checkbox to every image. And when i press download button, all the selected images are downloaded. (as .zip, .rar) Thank you very much for your help Quote Link to comment https://forums.phpfreaks.com/topic/245946-image-download-help/ Share on other sites More sharing options...
cyberRobot Posted August 29, 2011 Share Posted August 29, 2011 Have you tried any of the tutorials found through Google? http://www.google.com/search?q=php+downloading+images+as+zip There are a couple that look promising. Quote Link to comment https://forums.phpfreaks.com/topic/245946-image-download-help/#findComment-1263143 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.