Skip to content Skip to sidebar Skip to footer

Multi-file Upload With Html 5

I have a web application that currently uses Flash. That application allows the user to select multiple files from their computer and press 'upload'. We then upload those files to

Solution 1:

You want to use this in, let's say, the form that let's the user to upload files:

<input name="uploads[]"type="file" multiple="true">

Then, in the backend you can go through the uploads as an array that contain the different files.

Post a Comment for "Multi-file Upload With Html 5"