Advertisement
Guest User

Untitled

a guest
Jan 16th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.93 KB | None | 0 0
  1. <div class="loginclass">Add products for sales</div>
  2.     <div class="eula">Add products which you would like to sale.</div>
  3.       <form action="includes/add.inc.php" method="post">
  4.         <label for="addtext">Item Name</label>
  5.         <br>
  6.         <input type="text" name="itemName" placeholder="Item Name"/>
  7.         <br>
  8.         <label for="addtext">Quantity (pcs)</label>
  9.         <br>
  10.         <input type="text" name="itemQnt" placeholder="Quantity"/>
  11.         <br>
  12.         <label for="addtext">Price (euro)</label>
  13.         <br>
  14.         <input type="hidden" name="userIdl" placeholder="userID" value =<?php echo $_SESSION['userId']   ?> ""/>
  15.         <input type="text" name="itemPrc" placeholder="Price"/>
  16.         <br>
  17.         <button class="btn btn-4" type="submit" name="add-submit">Add</button>
  18.       </form>
  19.       <div class="eula">If you want to see all the available items, click <a href = "view.php">here</a>.</div>
  20.     </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement