Ver Mensaje Individual
  #6  
Antiguo 28-05-2008
Avatar de Héctor Randolph
[Héctor Randolph] Héctor Randolph is offline
Miembro Premium
 
Registrado: dic 2004
Posts: 882
Reputación: 22
Héctor Randolph Va por buen camino
Hola ixMike!

Prueba con esto:
Código PHP:

<?php

echo carga_texto('datos.txt');
exit();

function 
carga_texto($nombre_archivo)
{
    
$texto='';
    if (
file_exists ($nombre_archivo)){  
        
$fp fopen($nombre_archivo,'r');
        
//Lectura del archivo
        
while(!feof($fp)) $texto .= fgets($fp,4096);
        
fclose ($fp);
    }    
    return 
$texto;
}

?>
Espero que te sea útil

Saludos
Responder Con Cita