How to use multiple attribute to inpute multiple files in HTML

1 Answer

0 votes
<!DOCTYPE html>
<html>
<body>
 
<form action="">
Select files: <input type="file" name="sources" multiple>
<input type="submit">
</form>
 
</body>
</html>

 



answered Jan 7, 2019 by avibootz
...