Ver Mensaje Individual
  #6 (permalink)  
Antiguo 03/05/2008, 02:18
Proguri
 
Fecha de Ingreso: abril-2008
Ubicación: Montevideo - Uruguay
Mensajes: 156
Antigüedad: 16 años, 7 meses
Puntos: 5
Re: Lector de rss no funciona ..

Hi !

Código PHP:
    $newsfeed "http://www.noticias.fotocasa.es/rss/Noticias.xml";
    
$show " ";
    
    if(
$rss = @simplexml_load_file($newsfeed)) {
        foreach (
$rss->channel->item as $item) {
            
$show.= "<div align='center'> 
            <marquee Behavior='Scroll' Direction='up' ScrollAmount='2' ScrollDelay='90'  height='130'         
            width='137' onmouseover='this.stop()' onmouseout='this.start()'>"
;
            
$show .= " <b><font color='#000000' size='2' face='tahoma'>{$item->title}</font></b><br>
            <br>"
;
            
$show .= " <font color='#000000' size='2' face='tahoma'>{$item->description}</font>";
            
$show .= " <font color='#000000' size='2' face='tahoma'><a href='{item->link}'>Leer todo
            </a><br><br>------------<br></font>"
;
            
$show .= "<font color='#000000' size='2' face='tahoma'><a
            href='http://www.noticias.fotocasa.es/rss/Noticias.xml'>Mas noticias</a></font></div>"
;
            break;
        }
        echo 
utf8_decode($show);
    } else {
        echo 
"<div>Error, no se puede leer el archivo</div>";
    } 
La verdad es que a mi me funciona de maravillas n_n ... Lo que si es que quitando el break se pueden ver varias y con el break termina el "for each" en la primer "vuelta".
Quizas no funcionaba por alguna configuración y la has cambiado.

Suerte!
-ByE-