|    
			
				16/12/2003, 19:45
			
			
			  | 
  |   |  |  |  |  Fecha de Ingreso: julio-2001 
						Mensajes: 26
					 Antigüedad: 24 años, 3 meses Puntos: 0 |  | 
  |  Somebody Help Me!!  
  COMO PUEDO HACER PARA LEER VARIOS FICHEROS A LA VEZ TENGO ESTE CODIGO <?php
 
 //$file = "F:\Apache2\htdocs\migrar\tablas\data.txt";
 $file = "data.txt";
 
 //- Abriendo el fichero txt y si no se  muestra un mensaje
 $fo = @fopen($file, "r") or die ("¡ No encuentro el fichero !");
 
 //averiguamos el tamaño de txt
 $file_length= filesize($file);
 
 echo "\n";
 echo "el tamaño del fichero:" . "<br>";
 echo $file_length . "<br>";
 
 $fs = fseek($fo,0 , SEEK_CUR);
 //LECTURA DE CARACTERES
 
 
 
 $current_char = fread($fo, $file_length);
 echo "Ahora mismo el cursor esta localizado en estos caracteres:
 $current_char", "\n";
 
 
 
 ?>
 
 PERO LO QUE NECESITO ES LEER X FICHEROS A LA VEZ NO SE SI SE PUEDE HACER CON UN FOR O CON LO QUE ME PUEDAS SUGERIR SERA BIENVENIDO...
     |