Advertisement
Guest User

Untitled

a guest
Jul 19th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.61 KB | None | 0 0
  1. <?php
  2. require("connect.php");
  3.  
  4. $usernamex = $_POST["username"];
  5. $passwordx = $_POST["password"];
  6. $emailx = $_POST["email"];
  7. $write = $write = mysql_query("INSERT INTO penguins VALUES ('','$usernamex','$passwordx','$emailx','','','')");
  8. ?>
  9.  
  10. //HTML FORM
  11. <form action="main.php">
  12. * = Required to complete successfully
  13. *iCPX Username: <input type="text" size="12" maxlength="12" name="username"><br />
  14. *iCPX Password: <input type="text" size="12" maxlength="12" name="password"><br />
  15. *Your email: <input type="text" size="12" maxlength="25" name="email"><br />
  16.  <input type="submit" value="Register">
  17. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement