Sometimes, we want to select multiple files with file input with HTML.
In this article, we’ll look at how to select multiple files with file input with HTML.
How to select multiple files with file input with HTML?
To select multiple files with file input with HTML, we set the multiple
attribute.
For instance, we write
<input type="file" name="filefield" multiple="multiple" />
to add the multiple
attribute to let us select multiple files with the file input.
Conclusion
To select multiple files with file input with HTML, we set the multiple
attribute.