Return to Snippet

Revision: 6837
at June 18, 2008 11:30 by morroida


Initial Code
$exp_date = "2006-01-16";
$todays_date = date("Y-m-d");
$today = strtotime($todays_date);
$expiration_date = strtotime($exp_date); 

if ($expiration_date > $today) { 
$valid = "yes";
} else { 
$valid = "no";
}

Initial URL


Initial Description


Initial Title
PHP date comparision

Initial Tags
php, date

Initial Language
PHP