';
echo '
';
echo '
News:
'."\n";
// Display Latest Interviews
$res = mysql_query("SELECT * FROM news_rss WHERE category IN (SELECT id FROM news_groups WHERE rootid=2) ORDER BY id DESC LIMIT 0,10") or die("ERROR ".__LINE__.": ".mysql_error());
while($ar = mysql_fetch_array($res))
{
echo '
';
echo ShowNews($ar[headline],$ar[description]);
}
echo '
'."\n";
echo '
'."\n";
echo '
'."\n";
include("footer.php");
?>