Monday 2 February 2015

Checking a valid date entered by user in PHP

Checking a valid date entered by user in PHP

Many times we have to check the date entered are in correct format or not. The combination of entered month date and year by a user has to be a valid date to use in our applications. Even if we give a selection or a drop down list box to select a datewe have to check the combination of month, day and year selection is valid or not. User may select 29th Feb 2005 (which is not a leap year ) or it may select 31st Nov of any year. So the combination has to be checked. 

For this PHP has a checkdate() function which takes care of leap year checking also. This function validates the date and returns true if date is correct or false if date is wrong or does not exist. Here is the format 

int checkdate (int month, int day, int year) 

If you are using the drop down date combination for selection or asking to enter date in a format, better to validate date by using checkdate function. 

Here is the case where checkdate will return false 

$m=”11”;
$d=”31”;
$y=”05”;
If(!checkdate($m,$d,$y)){
echo “invalid date”; 
}else {
echo “Entry date is correct “;
}

If we are asking the user to enter date in a text field then we have to break the entered date value by using split function and then use the checkdate function to validate the date data ( of user ). Here we are collecting the user entered date value of a form posted by POST method.

$dt=$_POST['dt'];
//$dt="02/28/2007";
$arr=split("/",$dt); // splitting the array
$mm=$arr[0]; // first element of the array is month
$dd=$arr[1]; // second element is date
$yy=$arr[2]; // third element is year
If(!checkdate($mm,$dd,$yy)){
echo "invalid date";
}else {
echo "Entry date is correct";
}

We can use data entered by user in a query in MySQL table for getting ( selecting ) matching records.

0 comments:

Post a Comment