Advertisement
dwlakes

upload.html

Apr 6th, 2022
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.43 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.    <title>Upload a File</title>
  5. </head>
  6. <body>
  7.   <h1>Upload a File</h1>
  8.   <form  enctype="multipart/form-data" action="upload.php" method="post" >
  9.   <input type="hidden" name="MAX_FILE_SIZE" value="300" />
  10.   <label for="the_file">Upload a file:</label>
  11.   <input type="file" name="the_file" id="the_file"/>
  12.   <input type="submit" value="Upload File"/>
  13.   </form>
  14. </body>
  15. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement