test.html 428 B

123456789101112
  1. <html>
  2. <head>
  3. <title>Upload Folder using PHP </title>
  4. </head>
  5. <body>
  6. <form action="#" method="post" enctype="multipart/form-data">
  7. Type Folder Name:<input type="text" name="foldername" /><br/><br/>
  8. Select Folder to Upload: <input type="file" name="files[]" id="files" multiple directory webkitdirectory moxdirectory/><br/><br/>
  9. <input type="Submit" value="Upload" name="upload" />
  10. </form>
  11. </body>
  12. </html>