mercoledì 1 giugno 2011

LETTURA FILE DI TESTO

                                    ANAGRAFE DELLA 3^C
parte php

<html>
    <head>
        <title>Lettura dei Dati  in un file di testo</title>
    <head>
    <body bgcolor=f5f5dc>
        <?php
                //intestazione della tabella
                                    echo "<table border='0' align=center>
                                                    <tr bgcolor=blue>
                         <td><center><font face=Arial color=white><h3>Elenco della classe 3C S.I.A</h3></font></center></td>
                                                        </tr>";

            //apertura dei file da usare
                $fp=fopen("3csia.txt","r");
            //controllo che il file esista
                if($fp) {
                        //ciclo di iterazione precondizionale
                        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);
                                           
                                }
                            else $i=strlen($riga);
                }
                        echo "<tr bgcolor=white>
                                                <td><center><font face=Arial >$cognom <br></center></font></td>
                                                </tr>";

                } fclose ($fp);
                echo"</table>";

        }
        else echo "il file non &egrave; stato trovato";
        ?>
         
    </body>
</html>



(Il file di testo va creato con blocco note)

Nessun commento:

Posta un commento