I have time in the following format 00:00:00
I'd like to convert it to 5:30 pm type format.
Can't seem to be able to locate it in the manual...
$time = '17:30:00'; echo date('h:i:s A', strtotime($time));
Nice! Is there a way of stripping seconds?
Got it -- dah!