Código PHP:
<?php
require ('includes/connect.php');
//hacemos las consultas
$result=mysql_query("SELECT * FROM rss ORDER BY id Desc", $connect);
$totalregistros=mysql_num_rows($result);
//Recogemos las consultas en un array y las mostramos
while($row=mysql_fetch_array($result)){
$long_descripcion=400;
$num_noticias=10;
$n=0;
$dom = new DomDocument();
$dom->load($row['rss']);
$noticias = $dom->getElementsByTagName('aca va el nombre de los tags con noticias');
foreach ($noticias as $noticia){
foreach($noticia as $reg){
if($reg->title!=NULL && $reg->title!='' && $n<$num_noticias){
echo '<a href="'.$reg->link.'" target="_blank">'.$reg->title.'</a><br><br>';
$n++;
}
}
}
}
mysql_free_result($result);
?>