Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 4th, 2012  |  syntax: PHP  |  size: 0.33 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
This paste has a previous version, view the difference. Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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. ?>