Código PHP:
require_once ('magpierss/rss_fetch.inc');
//barrapunto
$url = "http://barrapunto.com/barrapunto.rss";
$rss = fetch_rss($url);
$items = array_slice($rss->items, 0);
$max_noticias = 30;
$cont = 0;
/echo '<marquee scrollamount="1" direction="up" loop="true" onmouseover="this.stop()" onmouseout="this.start()" align="left">';
while(!empty($items [$cont])&&($cont<$max_noticias)){
//echo '<b>Autor:</b> '.$items[$cont]["author"].'<br/>';
//echo ' <b>Fecha:</b> '.$items[$cont]["pubdate"].'<br/>';
echo '<div style="padding-left:20px; padding-right:20px;padding-top:5px;"><a href="'.$items[$cont]["link"].'" target="_blank" class="TituloNoticia">'.$items[$cont]["title"].'</a><hr color="#3165c6" size="1"/></div>';
//echo $items[0]["pubdate"].'<br/>';
echo '<div style="padding-left:20px; padding-right:20px;padding-bottom:20px;" class="ContenidoNoticia">'.$items[0]["summary"].'</div>';
$cont++;
}
//echo '</marquee>';
El problema no pude implementar como quiero, para empezar no sale la fecha de publicación no sé por qué?
Aquí esta lo que implemente
http://www.elsitiodenegocios.com/feedrss.php
Yo quiero que aparezca igual que aqui
http://barrapunto.com/barrapunto.rss
pero en mi página web, esto lo necesito para AdSense para sindicación
Cuando intente incluir la url http://www.elsitiodenegocios.com/feedrss.php en AdSense para sindicación
da error ¡Vaya! Se ha producido un problema.
Parece que la URL que ha especificado no es un feed válido. Hemos detectado el siguiente problema: The URL does not appear to reference a valid XML file. We encountered the following problem: Error on line 1: The markup in the document following the root element must be well-formed.
Por favor ayúdenme muchas gracias