Advertisement
Guest User

Untitled

a guest
Jun 15th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. $username = strip_tags($_POST['username']);
  2. $password = md5(strip_tags($_POST['password']));
  3. $email = strip_tags($_POST['email']);
  4. $bd = $_POST['birthday'];
  5.  
  6.  
  7. if (isset($_POST["register"]));
  8. {
  9. $dbCon->query("INSERT INTO users(username, password, email, birthday) Values('{$username}','{$password}','{$email}','{$bd}')");
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement