Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/02/2011, 15:12
Avatar de bUllan9ebrio
bUllan9ebrio
 
Fecha de Ingreso: enero-2011
Ubicación: Chile
Mensajes: 1.128
Antigüedad: 13 años, 2 meses
Puntos: 128
Respuesta: Crear Informes en PHP

agrega estas cabeceras a el archivo que generaras en excel :

Código PHP:
Ver original
  1. header("Content-type: application/vnd.ms-excel");
  2. header("Content-Type: application/force-download");
  3. header("Content-Disposition: attachment; filename='historicopromociones.xls'");
  4. header("Content-Transfer-Encoding: binary");
  5. header("Pragma: no-cache");  
  6. header("Expires: 0");