Ver Mensaje Individual
  #4 (permalink)  
Antiguo 31/03/2008, 09:07
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: ayuda para genera un txt de una consulta sql

Ciclas por los resultados:
Código PHP:
$archivo "ruta_MI_ARCHIVO.txt";
$f fopen ($archivo'w');
while( 
lees_datos_db() ) {
fputs ($f$contenido);
}
fclose ($f); 
Saludos.