Are there any solutions to upload multiple files at once without flash? 🙂
Not like that: choose one file, it goes to the stock, choose second file, it goes to the stock and than upload. But choose at once all needed files and upload them.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
HTML5 supports multiple files, by specifying the “multiple” attribute on the input.
Give the input a name attribute ending in square brackets (i.e. “myfileinput[]”) and it will appear to PHP exactly the same as if there were two inputs called the same thing on the page.
This obviously doens’t work in legacy browsers, however lack of support for multiple file uploads could be detected via JS, and multiple file inputs created via JS.