morroida on 06/18/08
Last Edited at 06/18/08 11:30am
$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";}
Report this snippet Tweet
Comment:
You need to login to post a comment.