Ver Mensaje Individual
  #4 (permalink)  
Antiguo 26/04/2011, 11:25
Avatar de stramin
stramin
 
Fecha de Ingreso: marzo-2008
Ubicación: Cubil felino
Mensajes: 1.652
Antigüedad: 16 años, 1 mes
Puntos: 336
Respuesta: php, mysql a excel

esta bien, solo necesitas agregar el cabezal de ese tipo de archivo (excel)

intenta alguno de estos 2
Código PHP:
Ver original
  1. header('Content-type: application/vnd.ms-excel');
  2. header("Content-Disposition: attachment; filename=archivo.xls");

Código PHP:
Ver original
  1. header('Content-type: application/ms-excel');
  2. header("Content-Disposition: attachment; filename=archivo.xls");

eso debes ponerlo al inicio del código y no debes imprimir texto.