You need to convert it to a UNIX timestamp (using strtotime) and then back into the format you require using the date function.
For example:
$currentDateTime="08/04/2010 22:15:00";
$newDateTime = date('h:i A', strtotime($currentDateTime));
You need to convert it to a UNIX timestamp (using strtotime) and then back into the format you require using the date function.
For example:
$currentDateTime="08/04/2010 22:15:00";
$newDateTime = date('h:i A', strtotime($currentDateTime));