Advertisement
gitlez

YA: submission.php WOC

Apr 21st, 2012
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.76 KB | None | 0 0
  1. <?php
  2.  
  3. /*    submission.php    */
  4. ?>
  5. <html>
  6.     <head>
  7.         <title>New User Registration</title>
  8.     </head>
  9. <body>
  10.     <form method="post" action="process.php">
  11.         First Name: <input type="text" name="first_name">
  12.         <br>
  13.         Last Name: <input type="text" name="last_name">
  14.         <br>
  15.         Address: <input type="text" name="address">
  16.         <br>
  17.         City: <input type="text" name="city">
  18.         <br>
  19.         Zip Code: <input type="text" name="zip_code">
  20.         <br>
  21.         Create Username: <input type="text" name="create_username">
  22.         <br>
  23.         Create Password: <input type="password" name="create_password">
  24.         <br>
  25.         <input type="submit" name="submit_btn" value="Submit">
  26.     </form>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement