Still not working!
please could someone check this out and tell me wats wrong:
[CODE=php]
function validate_date($ date)
{
$test = strtotime($date );
if( !$test )
{
return false;
}
date('d-M-Y', $test);
}
[/CODE]
Code:
$date = $_POST['date'];
$date = $_POST['date'];
Leave a comment: