![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
04/02/2009, 12:09
|
![Avatar de rodno](http://static.forosdelweb.com/customavatars/avatar285036_2.gif) | | | Fecha de Ingreso: enero-2009 Ubicación: En algun lugar de Cuba
Mensajes: 426
Antigüedad: 16 años Puntos: 43 | |
Respuesta: Exportar a Excell <?php
header('Content-type: application/vnd.ms-excel');
header("Content-Disposition: attachment; filename=archivo.xls");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Content-type: application/vnd.ms-excel");
header("Expires: 0");
/*
aqui iria el cuerpo del excel
*/
?>
Saludos Rodno |