Hola, perdon por la intromision,
es que he leido el post que ha dejado carlojas mas arriba y al aplicar el codigo que viene en el enlace que ha dejado para exportar consultas de la BD a excel
pero es que me dan error todos los headers, alguien sabe por que pasa esto,
en el post ponia que estaba solucionado el problema y le funcionaba.
Código PHP:
<?php define(db_host, "localhost");
define(db_user, "javier");
define(db_pass, "6524");
define(db_link, mysql_connect(db_host,db_user,db_pass));
define(db_name, "registro");
mysql_select_db(db_name);
/********************************************
Write the query, call it, and find the number of fields
/********************************************/
$qry =mysql_query("SELECT * from archivos");
$campos = mysql_num_fields($qry);
$i=0;
/********************************************
Extract field names and write them to the $header
variable
/********************************************/
echo " <center><table border=\"1\" align=\"center\">";
echo "<tr bgcolor=\"#336666\">
<td><font color=\"#ffffff\"><strong>ID</strong></font></td>
<td><font color=\"#ffffff\"><strong>NOMBRE</strong></font></td>
<TD><font color=\"#ffffff\"><strong>DESCRIPCION</strong></font></TD>
<td><font color=\"#ffffff\"><strong>RUTA</strong></font></td>
<td><font color=\"#ffffff\"><strong>TIPO</strong></font></td>
<td><font color=\"#ffffff\"><strong>TAMAÑO</strong></font></td>
<td><font color=\"#ffffff\"><strong>CATEGORIA</strong></font></td>
</tr>";
while($row=mysql_fetch_array($qry))
{
echo "<tr>";
for($j=0; $j<$campos; $j++) {
echo "<td>".$row[$j]."</td>";
}
echo "</tr>";
}
echo "</table>";
/********************************************
Set the automatic downloadn section
/********************************************/
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=consulta.xls");
header("Pragma: no-cache");
header("Expires: 0");
?>
Gracias por la ayuda.
Un saludo