I' am trying to convert 16/06/2014 8:00 am to 16th June, 2014 8:00 AM
This is the format of the original date.
$date_time = '16/06/2014 8:00 am';
What does that above give me
01st January 1970 12:01 AM
This is the code in place
$date_time = date("dS F Y h:m A", strtotime($date_time ));