Ver Mensaje Individual
  #1 (permalink)  
Antiguo 12/06/2008, 13:12
cLe
 
Fecha de Ingreso: junio-2008
Mensajes: 29
Antigüedad: 16 años, 9 meses
Puntos: 0
Sonrisa timestamp a fecha normal

Por si alguien llegara a necesitarlo un dia un scipt para convertir de timestamp a fecha normal

<?

$con=mysql_connect("localhost","root","");
mysql_select_db("bvdimp",$con);

$sql="SELECT cve,nombre, fecha_alta from clientes ORDER BY cve";
$result=mysql_query($sql);



$i=0;

while($row=mysql_fetch_row($result))
{

echo $row[1]." ".DATE("F jS, Y",$row[2])."<br>";
$i++;
//echo $i;
}

?>