Recommend this page to a friend! |
All requests | > | upload multiple files | > | Request new recommendation | > | Featured requests | > | No recommendations |
by suliman alkhateeb - 8 years ago (2015-12-12)
+5 | I need script for upload multiple files and images |
1. by Ettore Moretti - 8 years ago (2015-12-14) Reply
In HTML5 you can use the "multiple" attribute in the tag input type = "file".
HTML Example:
<form action = "upload.php" method = "post" enctype = "multipart / form-data"> <input type = "file" name = "files []" multiple /> <input type = "submit" value = "Upload" /> </ form>
In upload.php you can recover data files with the global variable $_FILES.
Being a HTML5 features, you will need to deal with the compatibility of different browsers:
Chrome 6.0 or higher Explorer 10.0 or higher Firefox 3.6 or higher Safari 5.0 or higher Opera 5.0 or higher
0 | by MOUSTAFA ELGAMMAL 185 - 8 years ago (2016-02-29) Comment This class can validate and process one or more file uploads. There is one class that can validate and process individual file uploads. It checks if the file name extension and MIME type is one of the allowed, as well if the file size is below the allowed size limit. The class can create the destination directory if it does not exists and move the uploaded file to that directory. Another class calls the first to validate and process multiple files being uploaded. |
+4 | by Manuel Lemos 23770 - 8 years ago (2015-12-14) Comment There are plenty of classes to handle file uploads. This provides that feature among others including retrieving files uploaded with a multiple file select. |
Recommend package | |
|