Ver Mensaje Individual
  #3 (permalink)  
Antiguo 11/12/2009, 16:43
Avatar de claudiovega
claudiovega
 
Fecha de Ingreso: octubre-2003
Ubicación: Puerto Montt
Mensajes: 3.667
Antigüedad: 20 años, 6 meses
Puntos: 11
Respuesta: Exportar tabla a CSV

Yo sacaria este código:

Código PHP:
<?php
    header
("Cache-Control: must-revalidate, post-check=0, pre-check=0");
    
header("Content-Length: " strlen($out));
    
// Output to browser with appropriate mime type, you choose ;)
    
header("Content-type: text/x-csv");
    
//header("Content-type: text/csv");
    //header("Content-type: application/csv");
    
header("Content-Disposition: attachment; filename=$filename");
    echo 
$out;
    exit;
?>
y lo colocaría en el primer script.