PHP Advance Form validation code

PHP form validation is a frequent requirement in many applications. Different type of php form validations is used based on the requirements but the process remains same. Let us start with a simple one and then go to the complex email validation using PHP regular expression.

Let us keep an input box and we will not allow any user to enter null data in it. So our form validation script will check for null entry and do the processing accordingly. Our main page where form is there is called form.php and let us posts the data to another page and name it as  form_validate.php. We will check and validate the variables in form_validate.php page. Here is the simple html form.

<form method=post
action=form_validate.php>
<input type=text name=userid>
<input type=text name=password>
<input type=submit value=Submit></form>
On submit of this form all entered variables will be available on form_validate.php page so let us go to form_validate.php page and read the variable and check if any value is there or not. Let us use one flag to check the status of the variables for form validation.
<?php
$flag="OK"; // This is the flag and we set it to OK
$msg=""; // Initializing the message to hold the error messages
if(strlen($userid) < 5){ // userid must be more than 5 character in length
$msg=$msg."( Please enter user id more than 5 character length )<BR>";
$flag="NOTOK";   //setting the flag to error flag.
}
User id validation is over, now let us start password checking.
if(strlen($password) < 5 ){ //length of the  password  must be more than 5 character in length
$msg=$msg."( Please enter password of more than 5 character length )<BR>";
$flag="NOTOK";   //setting the flag to error flag.
}
Now let us check the flag and give message accordingly, if the flag is set to OK then all validations is passed and we can proceed for the database checking. If the flag is set to NOTOK then entries are not ok so we have to display the messages.We also give one back button for the user to go back and correct the entries.
if($flag <>"OK"){
echo "<center>$msg <br>
<input type='button' value='Retry' onClick='history.go(-1)'></center>";
}else{ // all entries are correct and let us proceed with the database checking etc …
}
This is PHP form validation by using two simple text boxes. We have checked only the number of characters entered by the user. Now let us move one more step and go for form validation checking the type of entry. Say in userid field  other than   characters are not allowed. We will use same flag to set the status and append the message to the message variable.
if(ctype_alpha($userid)){ //Only lower or upper case letters allowed.
$msg=$msg."( Please use only alphabets a to z as userid  )<BR>";
$flag="NOTOK";   //setting the flag to error flag.
}
ctype_aplha() checks the input here and read more on email validation here. We will use this function more for advance PHP form validation

We can expect user inputs to be of a particular type or format. So we can check the variables to match the format before using them. Here is some sample codes to match required format before using.


Subscribe to our YouTube Channel here


Subscribe

* indicates required
Subscribe to plus2net

    plus2net.com




    BKP012

    02-09-2012

    so helpful
    ganesh suthar

    23-09-2014

    I want to use flag in header because show alert

    Post your comments , suggestion , error , requirements etc here .




    We use cookies to improve your browsing experience. . Learn more
    HTML MySQL PHP JavaScript ASP Photoshop Articles FORUM . Contact us
    ©2000-2023 plus2net.com All rights reserved worldwide Privacy Policy Disclaimer