Ver Mensaje Individual
  #6 (permalink)  
Antiguo 04/08/2005, 10:05
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
Código PHP:
<?php
   $fp
=fopen("archivo.txt","w+");
   
fwrite($fp,"Hola\r\n\r\n");
   
fwrite($fp,"como\r\n\r\n");
   
fwrite($fp,"estas");
   
fclose($fp);
?>
Hice esto y funciona.