SlideShare a Scribd company logo
1 of 7
Download to read offline
Validation in PHP

Validation is a process by which we can prevent erroneous/incorrect data in the
form/server. To ensure valid data is collected, we apply a set of validations to data we
collect. Validation is a set of rules that you apply to the data you collect. It is very essential
to have the input to your form validated before taking the form submission data for further
processing. When there are many fields in the form, the PHP validation script becomes too
complex. Make sure you make it a habit to validate all your web pages before publishing.
When you validate web pages or a web form using a validation process, you simply check
the content of the code to ensure it is valid and free from errors.

Code

<?php
$con=mysql_connect("localhost","root","");
mysql_select_db("sunderdeep",$con);
@$a=$_POST['text_name'];
@$b=$_POST['text_mobile'];
@$c=$_POST['text_email'];
@$d=$_POST['text_user'];
@$e=$_POST['text_pass'];
@$f=$_POST['text_repass'];
if(@$_POST['insert'])
{
//echo $sql1="insert into emp values('$a','$b','$c','$d','$e','$f')";
//mysql_query($sql1);
echo "Your Data Successfully Saved";
}
?>
<html>
   <head></head>
   <script language="javascript" type="text/javascript">
   function validate()
   {
   if(document.getElementById("text_name").value=="")
   {
      alert("Please Enter Your Name");
      document.getElementById("text_name").focus();
      return false;
   }
   if(!(isNaN(document.validation.text_name.value)))
   {
      alert("Name has character only!");
      return false;
   }
   if(document.getElementById("text_mobile").value=="")
   {
      alert("Please Enter Your Mobile Number");
      document.getElementById("text_mobile").focus();



                           www.vineetsaini.wordpress.com
return false;
   }
   if((isNaN(document.validation.text_mobile.value)))
   {
       alert("Mobile has numeric only!");
       return false;
   }
   var emailPat=/^([w-]+(?:.[w-]+)*)@((?:[w-]+.)*w[w-]{0,66}).([a-
z]{2,6}(?:.[a-z]{2})?)$/i
   var emailid=document.getElementById("text_email").value;
   var matchArray = emailid.match(emailPat);
   if (matchArray == null)
   {
       alert("Your email address is wrong. Please try again.");
       document.getElementById("text_email").focus();
       return false;
   }
   if(document.getElementById("text_user").value=="")
   {
       alert("Please Enter User Name");
       document.getElementById("text_user").focus();
       return false;
   }
   if(document.getElementById("text_pass").value=="")
   {
       alert("Please Enter Your Password");
       document.getElementById("text_pass").focus();
       return false;
   }
   if(document.getElementById("text_repass").value=="")
   {
       alert("Please ReEnter Your Password");
       document.getElementById("text_repass").focus();
       return false;
   }
   if(document.getElementById("text_repass").value!="")
   {
        if(document.getElementById("text_repass").value !=
document.getElementById("text_pass").value)
        {
            alert("Confirm Password doesnot match!");
            document.getElementById("text_repass").focus();
            return false;
        }
   }
   return true;
 }
 </script>
   <body bgcolor="pink">
       <form name="validation" method="post" onsubmit="return validate();">
       <center>
          <h3><u>Validation in PHP</u></h3>
   <table border="2">


                       www.vineetsaini.wordpress.com
<tr>
     <td width="179">Name</td>
  <td><label>
    <input name="text_name" type="text" id="text_name" />
  </label></td>
 </tr>
 <tr>
  <td width="179">Phone/Mobile</td>
  <td><label>
    <input name="text_mobile" type="text" id="text_mobile" />
  </label></td>
 </tr>
 <tr>
  <td width="179">Email address </td>
  <td><label>
    <input name="text_email" type="text" id="text_email" />
  </label></td>
 </tr>
 <tr>
  <td>User Name</td>
  <td><label>
    <input name="text_user" type="text" id="text_user" />
  </label></td>
 </tr>
 <tr>
  <td>Password </td>
  <td><label>
    <input name="text_pass" type="password" id="text_pass" />
  </label></td>
 </tr>
 <tr>
  <td>Confirm Password</td>
  <td><label>
    <input name="text_repass" type="password" id="text_repass" />
  </label></td>
 </tr>
 <tr align="center">
  <td colspan="2"><label>
    <input type="submit" name="insert" value="Save" />
  </label></td>
  </tr>
</table>
</center>
</form>
</body>
</html>

Output




                      www.vineetsaini.wordpress.com
If you do not enter a name in the name column then there will be an error produced i.e.
"Please enter your name". Like as in the following image.




If you will enter a digit in the name column then there will also be an error produced i.e.
"Name has character only". Like as in the following image.




                         www.vineetsaini.wordpress.com
If you enter a character in the mobile/phone column then there will be an error produced
i.e. "Mobile has numeric only". Like as in the following image.




If you enter an incorrect format of mail id in the mail address column then there will be an
error produced i.e. "Your mail address is wrong . Please try again". Like as in the following
image.




                         www.vineetsaini.wordpress.com
If you do not enter a password in the password column then there will be an error produced
i.e. "please enter password". Like as in the following image.




If you do not re-enter a correct password then there will be an error produced i.e. "Confirm
password does not match". Like as in the following image.




                         www.vineetsaini.wordpress.com
When you fill in all columns correctly and you click on the save button then there will be an
error produced i.e. "Your data successfully saved". Like as in the following image.




Conclusion

So in this article you saw how to apply validation in a form. Using this article one can easily
understand validation in PHP.




                          www.vineetsaini.wordpress.com

More Related Content

More from Vineet Kumar Saini (20)

Introduction to Html
Introduction to HtmlIntroduction to Html
Introduction to Html
 
Computer Fundamentals
Computer FundamentalsComputer Fundamentals
Computer Fundamentals
 
Country State City Dropdown in PHP
Country State City Dropdown in PHPCountry State City Dropdown in PHP
Country State City Dropdown in PHP
 
Pagination in PHP
Pagination in PHPPagination in PHP
Pagination in PHP
 
Stripe in php
Stripe in phpStripe in php
Stripe in php
 
Php Tutorials for Beginners
Php Tutorials for BeginnersPhp Tutorials for Beginners
Php Tutorials for Beginners
 
Install Drupal on Wamp Server
Install Drupal on Wamp ServerInstall Drupal on Wamp Server
Install Drupal on Wamp Server
 
Joomla 2.5 Tutorial For Beginner PDF
Joomla 2.5 Tutorial For Beginner PDFJoomla 2.5 Tutorial For Beginner PDF
Joomla 2.5 Tutorial For Beginner PDF
 
Functions in PHP
Functions in PHPFunctions in PHP
Functions in PHP
 
Sorting arrays in PHP
Sorting arrays in PHPSorting arrays in PHP
Sorting arrays in PHP
 
Dropdown List in PHP
Dropdown List in PHPDropdown List in PHP
Dropdown List in PHP
 
Update statement in PHP
Update statement in PHPUpdate statement in PHP
Update statement in PHP
 
Delete statement in PHP
Delete statement in PHPDelete statement in PHP
Delete statement in PHP
 
Implode & Explode in PHP
Implode & Explode in PHPImplode & Explode in PHP
Implode & Explode in PHP
 
Types of Error in PHP
Types of Error in PHPTypes of Error in PHP
Types of Error in PHP
 
GET and POST in PHP
GET and POST in PHPGET and POST in PHP
GET and POST in PHP
 
Database connectivity in PHP
Database connectivity in PHPDatabase connectivity in PHP
Database connectivity in PHP
 
Arrays in PHP
Arrays in PHPArrays in PHP
Arrays in PHP
 
Programming in C
Programming in CProgramming in C
Programming in C
 
Browser information in PHP
Browser information in PHPBrowser information in PHP
Browser information in PHP
 

Recently uploaded

4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptxmary850239
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfPatidar M
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptshraddhaparab530
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONHumphrey A Beña
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...Postal Advocate Inc.
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxAshokKarra1
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management systemChristalin Nelson
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parentsnavabharathschool99
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)lakshayb543
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptxmary850239
 
Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)cama23
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfErwinPantujan2
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptxAUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptxiammrhaywood
 

Recently uploaded (20)

4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdf
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.ppt
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
 
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptxYOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptx
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management system
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parents
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx
 
Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptxAUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
 

Validation in PHP

  • 1. Validation in PHP Validation is a process by which we can prevent erroneous/incorrect data in the form/server. To ensure valid data is collected, we apply a set of validations to data we collect. Validation is a set of rules that you apply to the data you collect. It is very essential to have the input to your form validated before taking the form submission data for further processing. When there are many fields in the form, the PHP validation script becomes too complex. Make sure you make it a habit to validate all your web pages before publishing. When you validate web pages or a web form using a validation process, you simply check the content of the code to ensure it is valid and free from errors. Code <?php $con=mysql_connect("localhost","root",""); mysql_select_db("sunderdeep",$con); @$a=$_POST['text_name']; @$b=$_POST['text_mobile']; @$c=$_POST['text_email']; @$d=$_POST['text_user']; @$e=$_POST['text_pass']; @$f=$_POST['text_repass']; if(@$_POST['insert']) { //echo $sql1="insert into emp values('$a','$b','$c','$d','$e','$f')"; //mysql_query($sql1); echo "Your Data Successfully Saved"; } ?> <html> <head></head> <script language="javascript" type="text/javascript"> function validate() { if(document.getElementById("text_name").value=="") { alert("Please Enter Your Name"); document.getElementById("text_name").focus(); return false; } if(!(isNaN(document.validation.text_name.value))) { alert("Name has character only!"); return false; } if(document.getElementById("text_mobile").value=="") { alert("Please Enter Your Mobile Number"); document.getElementById("text_mobile").focus(); www.vineetsaini.wordpress.com
  • 2. return false; } if((isNaN(document.validation.text_mobile.value))) { alert("Mobile has numeric only!"); return false; } var emailPat=/^([w-]+(?:.[w-]+)*)@((?:[w-]+.)*w[w-]{0,66}).([a- z]{2,6}(?:.[a-z]{2})?)$/i var emailid=document.getElementById("text_email").value; var matchArray = emailid.match(emailPat); if (matchArray == null) { alert("Your email address is wrong. Please try again."); document.getElementById("text_email").focus(); return false; } if(document.getElementById("text_user").value=="") { alert("Please Enter User Name"); document.getElementById("text_user").focus(); return false; } if(document.getElementById("text_pass").value=="") { alert("Please Enter Your Password"); document.getElementById("text_pass").focus(); return false; } if(document.getElementById("text_repass").value=="") { alert("Please ReEnter Your Password"); document.getElementById("text_repass").focus(); return false; } if(document.getElementById("text_repass").value!="") { if(document.getElementById("text_repass").value != document.getElementById("text_pass").value) { alert("Confirm Password doesnot match!"); document.getElementById("text_repass").focus(); return false; } } return true; } </script> <body bgcolor="pink"> <form name="validation" method="post" onsubmit="return validate();"> <center> <h3><u>Validation in PHP</u></h3> <table border="2"> www.vineetsaini.wordpress.com
  • 3. <tr> <td width="179">Name</td> <td><label> <input name="text_name" type="text" id="text_name" /> </label></td> </tr> <tr> <td width="179">Phone/Mobile</td> <td><label> <input name="text_mobile" type="text" id="text_mobile" /> </label></td> </tr> <tr> <td width="179">Email address </td> <td><label> <input name="text_email" type="text" id="text_email" /> </label></td> </tr> <tr> <td>User Name</td> <td><label> <input name="text_user" type="text" id="text_user" /> </label></td> </tr> <tr> <td>Password </td> <td><label> <input name="text_pass" type="password" id="text_pass" /> </label></td> </tr> <tr> <td>Confirm Password</td> <td><label> <input name="text_repass" type="password" id="text_repass" /> </label></td> </tr> <tr align="center"> <td colspan="2"><label> <input type="submit" name="insert" value="Save" /> </label></td> </tr> </table> </center> </form> </body> </html> Output www.vineetsaini.wordpress.com
  • 4. If you do not enter a name in the name column then there will be an error produced i.e. "Please enter your name". Like as in the following image. If you will enter a digit in the name column then there will also be an error produced i.e. "Name has character only". Like as in the following image. www.vineetsaini.wordpress.com
  • 5. If you enter a character in the mobile/phone column then there will be an error produced i.e. "Mobile has numeric only". Like as in the following image. If you enter an incorrect format of mail id in the mail address column then there will be an error produced i.e. "Your mail address is wrong . Please try again". Like as in the following image. www.vineetsaini.wordpress.com
  • 6. If you do not enter a password in the password column then there will be an error produced i.e. "please enter password". Like as in the following image. If you do not re-enter a correct password then there will be an error produced i.e. "Confirm password does not match". Like as in the following image. www.vineetsaini.wordpress.com
  • 7. When you fill in all columns correctly and you click on the save button then there will be an error produced i.e. "Your data successfully saved". Like as in the following image. Conclusion So in this article you saw how to apply validation in a form. Using this article one can easily understand validation in PHP. www.vineetsaini.wordpress.com