javascript - Multiple file upload and zip them on the fly failed -
i have created multiple file uploader using html & php. uploader functionality works fine while try create zip on fly in order add uploaded file zip file. in case, failed create zip , add uploaded file zip. don't know why it's not working. please check scripts below , let me know if missed in advance: html scripts: <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>file upload progress bar</title> <script type="text/javascript"> // select file function styling input[type="file"] function select_file(){ document.getelementbyid('image').click(); return false; } </script> </head> <body> <div class="container"> <!--status message appear here--> <div class="status"></div> <!--image upload form--> <form class="pure-form" action="upload.php" enctype="multipart/f...