Basically what I'm trying to do is do an if command to check a date returned from database vs the current date (todays date or tomorrows date if i go on the page tomorrow)
I was thinking of something along the lines of
$date = "2013-11-10 20:28:41";
if ($date < Curdate)
{
echo "expired";
}
if anyone can give me any insight on the correct commands for this, I would really appreciate it.