how to check if the date is in dd/mm/yyyy format in php code example
Example: php validate date format yyyy-mm-dd
$date="2012-09-12";
if (preg_match("/^[0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1])$/",$date)) {
return true;
} else {
return false;
}