I want to allow my program to select and upload multiple files at a time.
Asked
Active
Viewed 31 times
2 Answers
0
I used multiple inside tag like this:
<input
className="btn-browse"
type="file"
onChange={onChangeHandler}
accept=".jpeg, .jpg, .png, .gif, .bmp"
multiple
/>

Ali
- 9
- 1
0
We can upload multiple files by providing Multiple property in the input tag.
h1 {
color: green;
}
.container {
text-align: center;
width: 850px;
margin: 35px;
}
.property {
width: 400px ;
float: left;
border: 2px solid black;
padding: 10px;
}
.attribute {
width: 400px ;
float: right;
border: 2px solid black;
padding: 10px;
}
<body>
<div class="container">
<div class="property">
<form action="/action_page_inputtags_multiplefiles.php">
<label for="files">Select Multiple files:</label>
<input type="file" id="files" name="files" multiple>
</form>
</div>
</body>
</html>

srinithi R
- 206
- 1
- 5