Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <form action="includes/submitprd.inc.php" method="post" enctpype="multipart/form-data">
  2.  
  3. <input type="text" name="title" placeholder="Name des Produktes">
  4. <input type="number" name="price" placeholder="Ihr Preis" min="1" max="9999">
  5. <input type="file" name="img">
  6. <input type="text" name="descr" placeholder="Artikelbeschreibung einfügen">
  7. <button type="submit" name="submitprd">Produkt einstellen!</button>
  8.  
  9. </form>
  10.  
  11. <?php
  12. if (isset($_POST['submitprd'])){
  13. $img = $_FILES['img'];
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement