Foros del Web » Programando para Internet » PHP »

error el exportar archivo excel

Estas en el tema de error el exportar archivo excel en el foro de PHP en Foros del Web. Estrimados, me aparece el siguiente error al exportar una tabla a excel mediante Warning: Cannot modify header information - headers already sent by (output started ...
  #1 (permalink)  
Antiguo 18/04/2012, 10:46
 
Fecha de Ingreso: noviembre-2011
Mensajes: 121
Antigüedad: 12 años, 5 meses
Puntos: 0
error el exportar archivo excel

Estrimados, me aparece el siguiente error al exportar una tabla a excel mediante

Warning: Cannot modify header information - headers already sent by (output started at /home/optchile/public_html/exportar_excel_admin.php:48) in /home/optchile/public_html/exportar_excel_admin.php on line 52

Warning: Cannot modify header information - headers already sent by (output started at /home/optchile/public_html/exportar_excel_admin.php:48) in /home/optchile/public_html/exportar_excel_admin.php on line 53

Warning: Cannot modify header information - headers already sent by (output started at /home/optchile/public_html/exportar_excel_admin.php:48) in /home/optchile/public_html/exportar_excel_admin.php on line 54

Warning: Cannot modify header information - headers already sent by (output started at /home/optchile/public_html/exportar_excel_admin.php:48) in /home/optchile/public_html/exportar_excel_admin.php on line 55

Warning: Cannot modify header information - headers already sent by (output started at /home/optchile/public_html/exportar_excel_admin.php:48) in /home/optchile/public_html/exportar_excel_admin.php on line 56

con el siguiente codigo:

Código PHP:
<?php
$proyecto 
trim($row_Recordset1['proyecto']);
$fecha date('d-m-Y');

header('Content-type: application/vnd.ms-excel');
header("Content-Disposition: attachment; filename=Mantenciones_realizadas_al_".$fecha.".xls");
header("Pragma: no-cache");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Expires: 0");
?>
  #2 (permalink)  
Antiguo 18/04/2012, 10:56
Colaborador
 
Fecha de Ingreso: mayo-2008
Ubicación: $MX['VZ']['Xalapa']
Mensajes: 3.005
Antigüedad: 16 años
Puntos: 528
Respuesta: error el exportar archivo excel

Si miras los errores, te dice que en las lineas 42-56 tu código está dando una salida. para evitarlo, tu script no debe sacar nada a pantalla antes de los headers
  #3 (permalink)  
Antiguo 18/04/2012, 12:07
 
Fecha de Ingreso: noviembre-2011
Mensajes: 121
Antigüedad: 12 años, 5 meses
Puntos: 0
Respuesta: error el exportar archivo excel

muchas gracias... puse los headers al inicio del codigo y se soluciono todo... me dio el problema cuando lo subi al servidor...

Etiquetas: excel, html, tabla
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 00:49.