Ver Mensaje Individual
  #4 (permalink)  
Antiguo 12/12/2010, 09:26
Avatar de Masterphp
Masterphp
 
Fecha de Ingreso: septiembre-2009
Ubicación: /home/php/
Mensajes: 94
Antigüedad: 14 años, 7 meses
Puntos: 3
Respuesta: Funciona en local pero remoto no

Prueba con esto:
Código PHP:
Ver original
  1. <?
  2. if ($_POST['html']) {  
  3. header('Content-type: application/vnd.ms-excel');
  4. header("Content-Disposition: attachment; filename=Ganadores.xls");
  5. header("Pragma: no-cache");
  6. header("Expires: 0");
  7. echo $_POST['html'];  
  8. }
  9. ?>