Ver Mensaje Individual
  #2 (permalink)  
Antiguo 25/07/2007, 07:50
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Re: Exportar a excel una consulta de PHP+Oracle

Solo es cuestion de dibujar una tabla en HTML normal y mandar la salida con las cabeceras para bajarlo a excel, algo asi:
Código PHP:
header("Content-Type: application/force-download");
header("Content-Disposition: attachment; filename=miarchivo.xls");
header("Content-Transfer-Encoding: binary");
header("Cache-Control: private");
        
echo 
$output// $output tiene tu tabla en HTML
exit; 
Saludos.