Code: Select all
Feb 10 at 3:18 PMSo I figure I can correct a bunch of the ones from 2005, by determining if the month and day is greater than the month and day of today.
Code: Select all
$p = explode(' ','Feb 10 at 3:18 PM');
$month = $p[0];
$day = $p[1];How can I tell if $month is greater than or less than the month now, and the same with day?
I am familiar with the date() function, I just dont' know how to use it in this instance.