Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- if(isset($_POST['send'])) {
- $username = sec($_POST['username']);
- $fname = sec($_POST['fname']);
- $lname = sec($_POST['lname']);
- $password = md5(sec($_POST['password']));
- $email = sec($_POST['email']);
- if(!$username||!$fname||!$lname||!$password||!$email) {
- print "אנא מלא את כל השדות";
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment