Consulta de fechas guardadas en msqli con php
Estoy trabajando en una base de datos hecha en msqli y tengo el problema de extrer las fechas guardadas en esta base de datos con php cuando estraigo los datos de dica tabla toda la información aparece como la tengo guardada pero menos la fecha ya que en ves de aparecerme así 10/10/2010 a las 18:22:21 aparece es esto 5879462521 y este es el código que tengo para extraer los datos
<html>
<body>
<center>
<div id="contenedor"></div>
</center>
<center>
<div id="cabecera"><img src="IMAGENES/GIMNASIO2.gif" width="890" height="106" alt="" border="5"></div>
</center>
<center><img src="IMAGENES/nuevogimnasiocolombobritani.gif" width="100" height="100" alt=""/></center>
<div id="lateral"></div>
<?php
$link = mysql_connect("localhost", "root", "");
mysql_select_db("helpdesk",$link);
$result= mysql_query("SELECT * FROM td_tickets WHERE dname='ESTAFETA'",$link);
if($row= mysql_fetch_array($result)){
echo "
<table border= '3'\n";
echo "<tr>
\n";
echo "
<td><b>id</b></td>
\n";
echo "
<td><b>dname</b></td>
\n";
echo "
<td><b>mname</b></td>
\n";
echo "
<td><b>amname</b></td>
\n";
echo "
<td><b>email</b></td>
\n";
echo "
<td><b>subject</b></td>
\n";
echo "
<td><b>message</b></td>
\n";
echo "
<td><b>date</b></td>
\n";
echo "
<td><b>close_reason</b></td>
\n";
echo "
</tr>
\n";
do{
echo "
<tr>
\n";
echo "
<td>".$row["id"]."</td>
\n";
echo "
<td>".$row["dname"]."</td>
\n";
echo "
<td>".$row["mname"]."</td>
\n";
echo "
<td>".$row["amname"]."</td>
\n";
echo "
<td>".$row["email"]."</td>
\n";
echo "
<td>".$row["subject"]."</td>
\n";
echo "
<td>".$row["message"]."</td>
\n";
echo "
<td>".$row["date"]."</td>
\n";
//echo "
<td>".$fecha = date("d-m-Y h:m:s")."</td>
\n";
echo "
<td>".$row["close_reason"]."</td>
\n";
echo "
</tr>
\n";
}while ($row = mysql_fetch_array($result));
}else{
echo "¡ La base de datos está vacia !";
}
//id,tkey,did,dname,mname,amid,mname,email,subject,priority,message,date,lastreply,lastreplystaff,lastmid,lastmname,amid,ipadd,replies,votes,rating,ratingtotal,notes,estatus,closemid,closemname,closereason,autoclose,attachid,cdfields,guest,guestemail FROM td_tickets",$link);
?>
<div>
<input type="button" name="imprimir" value="Imprimir" onclick="window.print();">
<a href="administraciontickets.php">Volver a inicio</a>
<div id="pie" align="center">
<b>©IMFORMATICA2010</b>
</div>
</div>
</body>
</html>
<html>
<body>
<center>
<div id="contenedor"></div>
</center>
<center>
<div id="cabecera"><img src="IMAGENES/GIMNASIO2.gif" width="890" height="106" alt="" border="5"></div>
</center>
<center><img src="IMAGENES/nuevogimnasiocolombobritani.gif" width="100" height="100" alt=""/></center>
<div id="lateral"></div>
<?php
$link = mysql_connect("localhost", "root", "");
mysql_select_db("helpdesk",$link);
$result= mysql_query("SELECT * FROM td_tickets WHERE dname='ESTAFETA'",$link);
if($row= mysql_fetch_array($result)){
echo "
<table border= '3'\n";
echo "<tr>
\n";
echo "
<td><b>id</b></td>
\n";
echo "
<td><b>dname</b></td>
\n";
echo "
<td><b>mname</b></td>
\n";
echo "
<td><b>amname</b></td>
\n";
echo "
<td><b>email</b></td>
\n";
echo "
<td><b>subject</b></td>
\n";
echo "
<td><b>message</b></td>
\n";
echo "
<td><b>date</b></td>
\n";
echo "
<td><b>close_reason</b></td>
\n";
echo "
</tr>
\n";
do{
echo "
<tr>
\n";
echo "
<td>".$row["id"]."</td>
\n";
echo "
<td>".$row["dname"]."</td>
\n";
echo "
<td>".$row["mname"]."</td>
\n";
echo "
<td>".$row["amname"]."</td>
\n";
echo "
<td>".$row["email"]."</td>
\n";
echo "
<td>".$row["subject"]."</td>
\n";
echo "
<td>".$row["message"]."</td>
\n";
echo "
<td>".$row["date"]."</td>
\n";
//echo "
<td>".$fecha = date("d-m-Y h:m:s")."</td>
\n";
echo "
<td>".$row["close_reason"]."</td>
\n";
echo "
</tr>
\n";
}while ($row = mysql_fetch_array($result));
}else{
echo "¡ La base de datos está vacia !";
}
//id,tkey,did,dname,mname,amid,mname,email,subject,priority,message,date,lastreply,lastreplystaff,lastmid,lastmname,amid,ipadd,replies,votes,rating,ratingtotal,notes,estatus,closemid,closemname,closereason,autoclose,attachid,cdfields,guest,guestemail FROM td_tickets",$link);
?>
<div>
<input type="button" name="imprimir" value="Imprimir" onclick="window.print();">
<a href="administraciontickets.php">Volver a inicio</a>
<div id="pie" align="center">
<b>©IMFORMATICA2010</b>
</div>
</div>
</body>
</html>
1 respuesta
Respuesta de Jorge Vila
1