How would I check if a date in the format \"2008-02-16 12:59:57\" is less than 24 hours ago?
if (strtotime("2008-02-16 12:59:57") >= time() - 24 * 60 * 60) { /*LESS*/ }