Código PHP:
<?php $query_id2 =sprintf("SELECT * FROM foro,docentes Where foro.autor=docentes.clave and idforo = %s ORDER by fecha DESC", GetSQLValueString($colname_id, "text"));
$id2 = mysql_query($query_id2, $connection) or die(mysql_error());
echo"
<br />
";
while($row=mysql_fetch_array($id2)){
$autor=htmlentities ($row['Nombre']." ".$row['ApellidoPaterno']." ".$row['ApellidoMaterno'], ENT_COMPAT, 'utf-8');
$mensaje=$row['mensaje'];
AQUÍ INTENTO SEPARAR MI CAMPO FECHA TIPO DATE TIME
$timestamp = strtotime($row['fecha']);
$hora = date("h:i a", $row['timestamp']);
$fecha = date("d/m/Y", $row['timestamp']);
echo"
<table >
<tr><strong>Autor: </strong>$autor</tr><br />
<tr><strong>Fecha: </strong>$fecha</tr><br />
<tr><strong>Hora: </strong>$hora</tr><br />
<tr>$mensaje</tr><br />
</br>
</br>
</table>
</div><br />
";
}
?>
con mi código se ve como
Fecha: 31/12/1969
Hora: 06:00 pm
Alguien me puede ayudar por favor