";
foreach ($rss->items as $item){
$x++;
if($x>3)
break;
//$href = $item['link'];
//$title = $item['title'];
$desc = $item['description'];
$html .="
{$item['description']}";
}
$html .="";
print $html;
}
else{
$html = "
An error occurred while trying to fetch the Nagios Core feed. Stay on top of what's happening by visiting http://www.nagios.org/.
";
print $html;
}
}
?>