a ver
Código PHP:
Ver original<?php
$sql_fecha = "select fecha from reserva;";
function fechaesp($date) {
$year = $dia[0];
$month = (string) (int) $dia[1];
$day = (string) (int) $dia[2];
$dias = array("dom", "lun", "mar", "miér", "jue", "vie", "sáb"); $meses = array("", "enero", "febrero", "marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre"); return $tomadia . ", " . $day . " de " . $meses[$month] . " de " . $year;
}
$date = $registro['fecha'];
echo fechaesp($date);
}
?>