Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/03/2011, 12:33
Avatar de hackjose
hackjose
 
Fecha de Ingreso: abril-2010
Ubicación: Edo Mexico
Mensajes: 1.178
Antigüedad: 14 años
Puntos: 131
Respuesta: COmo leer un txt en php

Código PHP:
Ver original
  1. <?php
  2. $a=fopen("xd.txt","a+");
  3. echo fread($a,3);
  4. echo "<br/>";
  5. echo fread($a,10);
  6. ?>