Recommend this page to a friend! | Stumble It! | Bookmark in del.icio.us |
All requests | > | Upload multiple images path | > | Request new recommendation | > | Featured requests | > | No recommendations | ||
by Hardy man - 3 months ago (2015-11-16) upload multiple images
+3 | I can't move multiple images in the given folder and not been able to store their path as well, only one at a time. |
3. by Ettore Moretti - 2 months 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
1. by Dave Smith - 2 months ago (2015-11-16) Reply
As far as I am aware, the input file tag only accepts one file. It would be possible to use javascript to add a new input file tag whenever one was completed. I would check out the jsClasses site and see if they have anything over there that will work.
2. by Dave Smith - 2 months ago (2015-11-16) Reply
As far as I am aware, the input file tag only accepts one file. It would be possible to use javascript to add a new input file tag whenever one was completed. I would check out the jsClasses site and see if they have anything over there that will work.
+4 | by Bharat Parmar 170 - 2 months ago (2015-12-12) Comment Hello You can use this class where you will find UploadFile() method which allow you to upload multiple files with single input file element. To allow multiple file in input, you will have to add "multiple" attributes in the element. |
1. by Dave Smith - 2 months ago (2015-12-13) Reply
Will require a HTML 5 compliant browser. I never knew they added multiple file support in the HTML 5 specs, you learn something new every day.
Recommend package | |
|