Tengo este codigo que muestra la info actualizada de una web...(http://www.noticias.fotocasa.es/rss/Noticias.xml)
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>";
}
?>
alguien sabe???
saludos y gracias