Ver Mensaje Individual
  #4 (permalink)  
Antiguo 17/04/2007, 10:39
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: Puedo pasar datos de un array a un archivo de texto

Lee el manual si tienes tu array solo recorrelo y escribelo:
Código PHP:
$array// El arreglo con tus datos
$fh fopen("archivo.txt""w");
foreach( 
$array as $linea ) {
    
fwrite$fh$linea );

fclose$fh ); 
y no, la vdd es que no se si estuviste o no leyendo pues no te conozco.

Salu2.