Tema: Seprar texto
Ver Mensaje Individual
  #4 (permalink)  
Antiguo 11/04/2008, 14:47
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Re: Seprar texto

Prueba así:
Código PHP:
<?php
$archivo 
="res.txt"
$lineas=file($archivo);
////////////////////////////////
foreach( $lineas as $linea ) {
      
$exploded explode"-"trim($linea));
      echo 
$exploded[1];

?>
Saludos.