Use the multiple attribute in HTML to specify that the user can enter multiple values.
You can try running the following code to achieve multiple properties -
<!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>
The above is the detailed content of How to specify in HTML that the user can enter multiple values?. For more information, please follow other related articles on the PHP Chinese website!