Este es el tema http://www.forosdelweb.com/f18/lector-rss-php5-605952/
Este es el codigo
Código PHP:
<?php
$long_descripcion=400;
$num_noticias=10;
$n=0;
$noticias = simplexml_load_file('http://feeds.feedburner.com/RivRoNoticias');
foreach ($noticias as $noticia) {
foreach($noticia as $reg){
if($reg->title!=NULL && $reg->title!='' && $n<$num_noticias){
echo '<img src="imagenes/update_btn.gif" width="52" height="16" /><b><a href="'.$reg->link.'" target="_blank">'.$reg->title.'</a></b><br>';
$n++;
}
}
}
?>
Duda1: En el cuadrado rojo sale una "noticia" pero en verdad no lo es, es el titulo del feed y no quiero que salga como lo quito??
Duda2: En los cirulos rojos se muestran acentos que no me los muestra, el archivo tiene agregada la meta:
Código HTML:
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1" />
Bueno eso es, porfavor necesito ayuda con las dudas que puse :s