anagrafe.php
<html>
<head>
<title>Lettura dei dati in un file di testo</title>
</head>
<body bgcolor="f5f5dc">
<center>
<?php
//Intestazione della tabella
echo "<table border='0' align=center>
<tr bgcolor=red>
<td><center><font face=Arial color=white><h3>Elenco della classe 3<sup>a</sup>C S.I.A.</h3></font></center></td>
</tr>";
//Apertura del file da usare
$fp=fopen("3csia.txt","r");
if($fp) {
//Ciclo di iterazione pre condizionale
while (!feof($fp)) {
$riga=fgets($fp, 100);
$cognom="";
for ($i=0; $i<strlen($riga);$i++) {
if (substr($riga,$i,1)<>"|") {
$cognom=$cognom . substr($riga,$i,1);
//echo "$cognom<br>";
}
else $i=strlen($riga);
}
echo "<tr bgcolor=white>
<td><center><font face=Arial>$cognom</center></font></td>
</tr>";
} fclose ($fp);
echo "</table>";
}
else
echo "Il file non è stato trovato.";
?>
</body>
</html>
Nessun commento:
Posta un commento