Advertisement
renenikolas

Untitled

Oct 26th, 2020
1,200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.64 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Upload</title>
  6. </head>
  7. <body>
  8. <!-- Form for Upload-->
  9. <form enctype="multipart/form-data" action="transfer.php" method="POST">
  10.     <input id="1" type="text" name="name" placeholder="name" required> <br /> <br />
  11.     <input id="3" type="text" name="head" placeholder="Überschrift" required> <br /> <br />
  12.     <input id="2" type="text" name="content" placeholder="content" required> <br /> <br />
  13.  
  14.     Diese Datei hochladen: <input name="userfile" type="file" required/>
  15.     <input id="send" type="submit" name="submitButton" />
  16.     </body>
  17. </html>
  18. <?php
  19.  
  20.  
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement