Advertisement
Guest User

Untitled

a guest
May 11th, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.44 KB | None | 0 0
  1. <form action="insert.php" method="post" enctype="multipart/form-data">
  2.     <ul>
  3.         <li><label for="inp_fname">First name:</label>
  4.             <input id="inp_fname" type="text" name="FName" /></li>
  5.         <li><label for="inp_lname">Last name:</label>
  6.             <input id="inp_lname" type="text" name="LName" />
  7.         <li><label for="inp_uname">Username:</label>
  8.             <input id="inp_uname" type="text" name="UName" />
  9.         <li><label for="inp_studid">Student ID:</label>
  10.             <input id="inp_studid" type="text" name="StuID" id="form1" />
  11.         <li><label for="inp_pword">Password:</label>
  12.             <input id="inp_pword" type="text" name="PWord" id="form2" style='visibility: hidden;' /> <br>
  13.         <li><label for="inp_file">Picture:</label>
  14.             <input id="inp_file" type="file" name="userfile" id="file">
  15.         <li>Category:<ol>
  16.             <li><input type="radio" name="Cat" onclick="displayForm(1)" value="School" id="cat_1" checked="checked" />
  17.             <label for="cat_1">School</label></li>
  18.             <li><input type="radio" name="Cat" onclick="displayForm(2)" value="Facebook" id="cat_2" />
  19.             <label for="cat_2">Facebook</label></li>
  20.             <li><input type="radio" name="Cat" onclick="displayForm(2)" value="MySpace" id="cat_3" />
  21.             <label for="cat_3">MySpace</label></li>
  22.             <li><input type="radio" name="Cat" onclick="displayForm(2)" value="Other" id="cat_4" />
  23.             <label for="cat_4">Other </label></li>
  24.         </ol></li>
  25.     </ul>
  26.  
  27.     <fieldset><input type="submit" name="submit" value="Update Database" /></fieldset>
  28. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement