Respuesta: Mysql - tabla tendrias que hacer algo asi
while($row = mysqli_fetch_array($result))
{
if($row['fecha']){
$fecha = $row['fecha'] ;
$Eliminar = explode('-',$fecha);
$fechaFinal = $Eliminar[0]."/".$Eliminar[1]."/".$Eliminar[2];
}
echo "<td>" . $fechaFinal . "</td>";
}
Pruebalo hacer si te funciona si no me dices... Saludos. |