Advertisement
Guest User

Untitled

a guest
Jun 30th, 2016
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. function test_input($data) {
  2. $data = trim($data);
  3. $data = stripslashes($data);
  4. $data = htmlspecialchars($data);
  5. return $data;
  6. }
  7.  
  8. $email = test_input($_POST['email']);
  9. $firstname = test_input($_POST['firstname']);
  10. $lastname = test_input($_POST['lastname']);
  11. $user = test_input($_POST['user']);
  12. $pass = test_input($_POST['pass']);
  13. $passnew = md5($pass);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement