lunes, 20 de mayo de 2013

ARCHIVO DE TEXTO


                                              <hi> leyendo achivos</h1>
                                              <?php
                                              $recurso = fopen ("prueba.txt","r");
                                              $linea = fgets($recurso);
                                              echo $linea;
                                              ?>

DATOS1
           

                                             <h1>Sus datos</h1>
                                             <form action = "datos1.php" method="post">
                                             Su nombre <input type="text" name="nombre"/><br />
                                             Su apellido<input type="text"name ="apellido" /><br />
                                             su edad <input type="text" name="edad"/><br />
                                             color de ojos <input type="text" name ="ojos"/><br />
                                             <input type ="submit" value="Guardar datos"/>
                                             </form>


DATOS 2
                                      
                                           <?php
                                           $nombre = $_POST["nombre"];
                                           $apellido = $_POST["apellido"];
                                           $edad = $_POST["edad"];
                                           $ojos = $_POST["ojos"];
                                           $recurso = fopen ("prueba.text","a");
                                           fputs($recurso,"<p>nombre: $nombre <br/>");
                                           fputs ($recurso,"<p>apellido: $apellido     <br/>");
                                           fputs ($recurso,"<p>edad: $edad <br/>");
                                           fputs ($recurso,"<p>ojos: $ojos <br/>");
                                           fputs ($recurso,"color de ojos:$ojos </p/>");
                                           fclose ($recurso);
                                           ?>

PRUEBA TEXT

                                     
                                   <hi> leyendo archivos</h1>
                                   <?php

                                   
                                  $recurso = fopen ("prueba.txt","r");
                                        $linea  =fgets($recurso);
                                        echo  $linea;
                                        ?>


                                  <hi> leyendo archivos</h1>
                                  <?php


                                  $recurso = fopen ("prueba.txt","r");
                                         $linea  =feof($recurso);
                                         echo  $linea;
                                         ?>

<hi> leyendo archivos</h1><?php

                                 $recurso = fopen ("prueba.txt","r");
                                        while(!feof($recurso)){
                                        $linea  =fgets($recurso);
                                        echo $linea."<br />";
                                        }
                                        ?>

<h1>Escribiendo en prueba.txt</h1>


                             <?php
                                  $recurso = fopen("prueba.txt","w");
                                  fputs($recurso,"tengo ganas de tomar gaseosa helada");
                                  ?>

<h1>Escribiendo en prueba.txt</h1>

                            <?php
                                 $recurso = fopen("prueba.txt","a");  
                                 fputs($recurso,"tengo ganas de comer ensalada de fruta");                                                                                                                                   
                                 fclose($recurso);
                                 ?>

<h1>Escribiendo en prueba.txt</h1>

                            <?php
                                 $recurso = fopen("prueba.txt","as");
                                 fputs($recurso,"tengo ganas de comer arroz con pollo");

                                 $recurso = fopen("prueba.txt","r");
                                 while (!feof($recurso)){
                                 $fila = fgets($recurso);
                                 echo $fila."<br />";
                                 }
                                fclose ($recurso);
                                ?>



No hay comentarios:

Publicar un comentario