How To Validate Form Data in PHP
How To Validate Form Data in PHP
What is Validation?
Validation means check the input submitted by the user. There are two
types of validation are available in PHP. They are as follows −
Client-Side Validation − Validation is performed on the client machine web
browsers.
Server Side Validation − After submitted by data, the data has sent to a
server and perform validation checks in server machine.
PHP Form Validation is the backend or server-side validation. It prevents from
entering invalid data into the input field.
Use of Validation:
Page 1 of 13
How to Validate Form Using PHP
Before validating the form, you have to set the following basic requirements.
Create Form Validation Rules that are required in your project form
Page 2 of 13
Some of Validation rules for field
Field Validation Rules
Name Should required letters and white-spaces
Email Should required @
Website Should required a valid URL
Radio Must be selectable at least once
Check Box Must be checkable at least once
Drop Down menu Must be selectable at least once
myform/
|__script.php
|__form.php
|
2. Create An HTML Form
This PHP script creates an HTML registration form with Bootstrap styling,
includes a validation script, and handles form submissions, displaying validation
errors and success messages.
<?php
include('script.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>PHP Form Validation</title>
<meta charset="utf-8">
Page 3 of 13
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--bootstrap4 library linked-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-sm-4">
</div>
<div class="col-sm-4">
<!--====registration form====-->
<div class="registration-form">
<h4 class="text-center">Create a New Account</h4>
<p class="text-success text-center"><?php echo $valid; ?></p> <form action="<?php echo
htmlspecialchars($_SERVER["PHP_SELF"]);?>" method="post">
<!--//first name//-->
<div class="form-group">
<label for="email">First Name</label>
<input type="text" class="form-control" placeholder="Enter First Name" name="first_name" value="<?php echo
$set_firstName;?>">
<p class="err-msg">
<?php if($fnameErr!=1){ echo $fnameErr; }?>
</p>
</div>
<!--//Last name//-->
<div class="form-group">
<label for="email">Last Name</label>
<input type="text" class="form-control" placeholder="Enter Last Name" name="last_name" value="<?php echo
$set_lastName;?>">
<p class="err-msg">
<?php if($lnameErr!=1){ echo $lnameErr; } ?>
</p>
Page 4 of 13
</div>
<!--// Email//-->
<div class="form-group">
<label for="email">Email:</label>
<input type="text" class="form-control" id="email" placeholder="Enter email" name="email" value="<?php echo
$set_email;?>">
<p class="err-msg">
<?php if($emailErr!=1){ echo $emailErr; } ?>
</p>
</div>
<!--//Password//-->
<div class="form-group">
<label for="pwd">Password:</label>
<input type="password" class="form-control" placeholder="Enter password" name="password">
<p class="err-msg">
<?php if($passErr!=1){ echo $passErr; } ?>
</p>
</div>
<!--//Confirm Password//-->
<div class="form-group">
<label for="pwd">Confirm Password:</label>
<input type="password" class="form-control" placeholder="Enter Confirm password" name="cpassword">
<p class="err-msg">
<?php if($cpassErr!=1){ echo $cpassErr; } ?>
</p>
</div>
<button type="submit" class="btn btn-danger" value="Register" name="register">Register Now</button>
</form>
</div>
</div>
<div class="col-sm-4">
</div>
</div>
Page 5 of 13
</div>
</body>
</html>
This PHP script validates a registration form, checking first name, last name, email,
password, and confirm password using regular expressions. If all validations pass, a
success message is set, and input values are sanitized; otherwise, error messages are
displayed, and input values are retained for correction.
<?php
// by default, error messages are empty
$valid=$fnameErr=$lnameErr=$emailErr=$passErr=$cpassErr='';
// by default,set input values are empty
$set_firstName=$set_lastName=$set_email='';
extract($_POST);
if(isset($_POST['register']))
{
//input fields are Validated with regular expression
$validName="/^[a-zA-Z ]*$/";
$validEmail="/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/";
Page 6 of 13
$uppercasePassword = "/(?=.*?[A-Z])/";
$lowercasePassword = "/(?=.*?[a-z])/";
$digitPassword = "/(?=.*?[0-9])/";
$spacesPassword = "/^$|\s+/";
$symbolPassword = "/(?=.*?[#?!@$%^&*-])/";
$minEightPassword = "/.{8,}/";
// First Name Validation
if(empty($first_name)){
$fnameErr="First Name is Required";
}
else if (!preg_match($validName,$first_name)) {
$fnameErr="Digits are not allowed";
}else{
$fnameErr=true;
}
// Last Name Validation
if(empty($last_name)){
$lnameErr="Last Name is Required";
}
else if (!preg_match($validName,$last_name)) {
$lnameErr="Digits are not allowed";
}
else{
$lnameErr=true;
}
//Email Address Validation
if(empty($email)){
$emailErr="Email is Required";
}
else if (!preg_match($validEmail,$email)) {
$emailErr="Invalid Email Address";
}
else{
Page 7 of 13
$emailErr=true;
}
// password validation
if(empty($password)){
$passErr="Password is Required";
}
elseif (!preg_match($uppercasePassword,$password) || !preg_match($lowercasePassword,$password) ||
!preg_match($digitPassword,$password) || !preg_match($symbolPassword,$password) ||
!preg_match($minEightPassword,$password) || preg_match($spacesPassword,$password)) {
$passErr="Password must be at least one uppercase letter, lowercase letter, digit, a special character with no spaces
and minimum 8 length";
}
else{
$passErr=true;
}
// form validation for confirm password
if($cpassword!=$password){
$cpassErr="Confirm Password doest Matched";
}
else{
$cpassErr=true;
}
// check all fields are valid or not
if($fnameErr==1 && $lnameErr==1 && $emailErr==1 && $passErr==1 && $cpassErr==1)
{
$valid="All fields are validated successfully";
//legal input values
$firstName= legal_input($first_name);
$lastName= legal_input($first_name);
$email= legal_input($email);
$password= legal_input($password);
// here you can write Sql Query to insert user data into database table
}else{
Page 8 of 13
// set input values is empty until input field is invalid
$set_firstName=$first_name;
$set_lastName= $last_name;
$set_email= $email;
}
}
// convert illegal input value to ligal value formate
function legal_input($value) {
$value = trim($value);
$value = stripslashes($value);
$value = htmlspecialchars($value);
return $value;
}
?>
Explanation –
1. The PHP script initializes error messages and default values for input fields.
2. Input values are extracted from the POST request using extract($_POST).
3. The script validates first name, last name, email, password, and confirm
password using regular expressions.
4. Validation errors are assigned to corresponding error variables ($fnameErr,
$lnameErr, etc.).
5. If all validations pass, a success message ($valid) is set, and input values are
sanitized using the legal_input function.
6. The legal_input function trims, strips slashes, and converts special characters to
HTML entities for input sanitization.
7. If any validation fails, the input values are set to the provided values to maintain
user input for correction.
Page 9 of 13
Use htmlspecialchars() to encode special characters in HTML. This is useful
when you want to display user input as HTML and want to prevent script
injection attacks.
Use strip_tags() to remove HTML and PHP tags from a string. This is useful
when you want to allow users to format their input with basic HTML tags, but
want to remove potentially malicious tags.
Use trim() to remove leading and trailing whitespace from a string. This is useful
for cleaning up user input, especially when you are expecting a specific format
(e.g. a username or password).
Use addslashes() to add backslashes to a string. This is useful when you are
storing user input in a database and want to prevent SQL injection attacks.
Use filter_var() with a specific filter flag to sanitize user input. For example, you
can use FILTER_SANITIZE_EMAIL to remove all illegal characters from an
email address.
Out put
Page 10 of 13
Page 11 of 13
Email section
Page 12 of 13
Email Should required @
Website Should required a valid URL
Radio Must be selectable at least once
Check Box Must be checkable at least once
Drop Down menu Must be selectable at least once
There are several ways to sanitize user input in PHP, depending on the type of data and
how you plan to use it. Here are some common methods:
Use htmlspecialchars() to encode special characters in HTML. This is useful when you
want to display user input as HTML and want to prevent script injection attacks.
Use strip_tags() to remove HTML and PHP tags from a string. This is useful when you
want to allow users to format their input with basic HTML tags, but want to remove
potentially malicious tags.
Use trim() to remove leading and trailing whitespace from a string. This is useful for
cleaning up user input, especially when you are expecting a specific format (e.g. a
username or password).
Use addslashes() to add backslashes to a string. This is useful when you are storing user
input in a database and want to prevent SQL injection attacks.
Use filter_var() with a specific filter flag to sanitize user input. For example, you can use
FILTER_SANITIZE_EMAIL to remove all illegal characters from an email address.
Page 13 of 13