A few minutes ago I discovered that the forum on my site will incorrectly display AM and PM in the dates. The rest of the time displays correctly and the date.
This is what I have been using for the date times
$date = $row['post_date'];
$realDate = date('m/d/Y', $date);
$realTime = date('H:i:A', $date);
$now = date("m/d/Y H:i:A");