
25/05/2012, 08:48
|
 | | | Fecha de Ingreso: marzo-2012 Ubicación: /var/www/
Mensajes: 48
Antigüedad: 13 años Puntos: 2 | |
Respuesta: exportacion de consulta mysql a exel Cita:
Iniciado por matt_1985 utilizando estos header podrias lograr lo que necesitas .
Código PHP:
Ver originalheader('Expires: Sat, 26 Jul 1997 05:00:00 GMT'); // Date in the past header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT'); header('Cache-Control: no-store, no-cache, must-revalidate'); // HTTP/1.1 header('Cache-Control: pre-check=0, post-check=0, max-age=0'); // HTTP/1.1 header('Content-Transfer-Encoding: none'); header('Content-Type: application/vnd.ms-excel'); // This should work for IE & Opera header('Content-type: application/x-msexcel'); // This should work for the rest header('Content-Disposition: attachment; filename="Informe.xls"');
Saludos Gracias lo he resuelto con tu ayuda y esta explicación http://micodigobeta.com.ar/?p=372 |