Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.84 KB | None | 0 0
  1. include_once 'config.php';
  2.                         function security($value)
  3.                         {
  4.                         $html_sp = addslashes(htmlspecialchars($value));
  5.                         return $html_sp;
  6.                         }
  7.                         $username = security($_POST['username']);
  8.                         $password = security(md5($_POST['password']));
  9.                         $passwordb = security(md5($_POST['passwordb']));
  10.                         $email = security($_POST['email']);
  11.                         $city = security($_POST['city']);
  12.                         $sex = security($_POST['sex']);
  13.                         $bdd = security($_POST['bdd']);
  14.                         $bdm = security($_POST['bdm']);
  15.                         $bdy = security($_POST['bdy']);
  16.                         $date = date("Y/m/d, H:i:s");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement