<html>
<head><title>Lectura de Ficheros</title></head>
<body>
<h2> Fichero fdatos.txt </h2><hr /><pre>
<?php
//Abrimos el fichero para lectura
$fichero = fopen("fdatos.txt", "r") or die("Imposible abrir el fichero");
//procesamos cada línea
while (!feof($fichero)){
$linea = fgets($fichero);
echo $linea."<br>";
}
// cerramos el fichero
fclose ($fichero);
?>
</pre><hr />
</body>
</html>
Aplicaciones Web
Ejemplo lectura
Obra publicada con Licencia Creative Commons Reconocimiento Compartir igual 4.0