Ok, I have the strangest issue.
I'm using the following function:
$now = mktime(date('l jS \of F Y h:i:s A'));
$time = date('l jS \of F Y h:i:s A', $now);
echo "$time";
And for some reason, the date, minutes, and seconds are fine. However, the hour always shows either 12 or 1 and the A/M P/M always shows A/M?
Anyone ever run across this before?
Also, when I just run the date function like this:
echo date('l jS \of F Y h:i:s A');
Everything shows up fine?