Guest User

Untitled

a guest
May 4th, 2012
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. <?php
  2.     if(isset($_POST['send'])) {
  3.     $username = sec($_POST['username']);
  4.     $fname = sec($_POST['fname']);
  5.     $lname = sec($_POST['lname']);
  6.     $password = md5(sec($_POST['password']));
  7.     $email = sec($_POST['email']);
  8.     if(!$username||!$fname||!$lname||!$password||!$email) {
  9.         print "אנא מלא את כל השדות";
  10.     }
  11.     }
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment