Advertisement
Guest User

Untitled

a guest
Sep 15th, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.91 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <!-- This page is for learning about forms -->
  4.     <head>
  5.     <title>Order form</title>
  6.     </head>
  7.     <body>
  8.     <form action="process_order.php" method="post">
  9.     <fieldset>
  10.         <legend>Enter your order below</legend>
  11.         <p><label>Your name: <input type="text" name="customer_name" size="30" maxlength="50" placeholder="Type your full name here" /></label></p>
  12.         <p><label>How many pizza's do you want to order? <select name="qty_of_pizza">
  13.         <option value="1">1</option>
  14.         <option value="2">2</option>
  15.         <option value="3">3</option>
  16.         <option value="4">4</option>
  17.         </select>
  18.         </label></p>
  19.         <p><label>Comments: <textarea name="customer_comments" rows="3" cols="30" placeholder="Type any comments here" /></textarea></label></p>
  20.        </fieldset>
  21.     <p align="center"><input type="submit" name="submit" value ="Click to place order" /></p>
  22.    </form>
  23.    </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement