Upload Code
loading-left
loading loading loading
loading-right

Loading

Profile
No self-introduction
codes (1)
Multiple File Upload with PHP
no vote
HTML Markup Take a look at the html markup bellow. We need to add a simple html form with input type file and submit property. We also need to give file input type file name with box breaks like files[] and need to add a property named multiple. Here accept is an optional property that used to allow users to upload only image files <html lang="en"> <head>   <meta charset="UTF-8" />   <title>Multiple File Ppload with PHP</title> </head> <body>   <form action="" method="post" enctype="multipart/form-data">     <input type="file" id="file" name="files[]" multiple="multiple" accept="image/*" />   <input type="submit" value="Upload!" /> </form> </body> </html>
Deeps898038
2016-08-23
0
1
No more~