Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>Upload a File</title>
- </head>
- <body>
- <h1>Upload a File</h1>
- <form enctype="multipart/form-data" action="upload.php" method="post" >
- <input type="hidden" name="MAX_FILE_SIZE" value="300" />
- <label for="the_file">Upload a file:</label>
- <input type="file" name="the_file" id="the_file"/>
- <input type="submit" value="Upload File"/>
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement