I want to offer to upload multiple files clicking upload button only once. Can I use multipart to send files? If yes, then how?
P.S.: I don't want to use flash or send one file at a time.
In you HTML, you can do the following :
<input accept="image/jpeg,image/gif,image/png" type="file" name="upload[]" multiple/>
adding multiple to the end of your input grants you what you want.
multiple
2.1m questions
2.1m answers
60 comments
57.0k users