Ver Mensaje Individual
  #8 (permalink)  
Antiguo 01/02/2007, 10:12
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: De PHP a Excel

Que codigo utilizas?, es muy simple si usas lo que te puso .php:

Código PHP:
<?php
header
('Content-type: application/vnd.ms-excel'); 
header("Content-Disposition: attachment; filename=archivo.xls"); 
header("Pragma: no-cache"); 
header("Expires: 0");  
?>
<table> <tr> <td>Nombre:</td><td>Juanito Perez</td> </tr> <tr> <td>Pais</td><td>Shile</td> </tr> </table>