Ver Mensaje Individual
  #3 (permalink)  
Antiguo 02/11/2009, 17:58
nico_elpocholo
 
Fecha de Ingreso: octubre-2009
Mensajes: 40
Antigüedad: 15 años
Puntos: 0
Respuesta: como cargar un archivo .txt en un textarea

Es asi:

Código PHP:
Ver original
  1. $archivo = "archivo.txt";
  2. $handle = fopen($archivo, "r"); // Abris el archivo
  3. $contenido = fread ($handle, filesize ($archivo)); //Lees el archivo
  4. echo'
  5. <form>
  6. <textarea>'.$contenido.'</textarea>'; // Mostras el contenido del txt en el textarea
  7. echo'</form>';