use this function:
Function sql_date_and_time($sql_date) {
$read_date = substr($sql_date,6,2)."/";
$read_date .= substr($sql_date,4,2)."/";
$read_date .= substr($sql_date,0,4)." at ";
$read_date .= substr($sql_date,8,2).":";
$read_date .= substr($sql_date,10,2).":";
$read_date .= substr($sql_date,12,2);
return $read_date;
Assuming you have the data from the database in $row_data and the field is called process_date print/display the date/time with
echo sql_data_and_time($row_data["process_date"]);
This assumes you have used mysql_fetch_array to populate $row_data
Cheers,
Cris