Ver Mensaje Individual
  #8 (permalink)  
Antiguo 19/08/2005, 08:26
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
si quieres hacer saltos de texto en archivo usa:

Código PHP:
<?
   $nombre
="file2";
   
Header("Content-Type: text/plain");
   
Header("Content-Disposition: attachment; filename=$nombre.txt");
   echo 
"HOLA A TODOS\r\n";
   echo 
"Es una Prueba\r\n";
?>