
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Specify Multiple Values in HTML
Use the multiple attribute in HTML to specify a user can enter more than one value.
Example
You can try to run the following code to implement multiple attribute −
<!DOCTYPE html> <html> <head> <title>Upload multiple files</title> </head> <body> <form> <input type = "file" name = "name" multiple><br><br> After uploading multiple files, click Submit.<br> <input type = "submit" value = "Submit"> </form> </body> </html>
Advertisements