Ver Mensaje Individual
  #7 (permalink)  
Antiguo 24/03/2010, 14:32
cheru
 
Fecha de Ingreso: septiembre-2005
Mensajes: 34
Antigüedad: 19 años, 1 mes
Puntos: 1
Respuesta: [Ayuda] Explode

Código PHP:
Ver original
  1. $textFile = file_get_contents("http://localhost/entradas.php");
  2. $textLines = explode("\n", $textFile );
  3.  
  4. foreach ($textLines AS $text){
  5.    list($num, $line) = explode('=', $text);
  6.    $textArray[$num] = $line;
  7. }
  8.  
  9. echo $textArray[1] .'<br />';
  10. echo $textArray[2].'<br />';
  11. echo $textArray[3].'<br />';
  12. echo $textArray[4].'<br />';
  13.  
  14. // Imprime
  15. Hola
  16. Adios
  17. buenos Dias
  18. Buenas Tardes

Saludos