When it's pulled from the db, it comes out like this: 2010-02-28 10:00:00
I'm formatting it (yes, I know that it's better to just do it in the query, but I don't have that option right now):
date('l F d, Y h:m A', strtotime($row['start']));
But, no matter what, it outputs like this: Sunday February 28, 2010 10:02 AM
Any idea why it's adding those two minutes?