0 ? $category : "News Articles";
echo "
$title
";
$articles = $news->get_articles($category, $perpage, $startrow);
if(count($articles)==0) $articles[0] = $news->no_articles();
foreach($articles as $article) {
echo "
";
echo "
" . format_unix_date($article['post_date'], 1) . "";
echo "
" . $article['short_description'] . "
read more...
";
echo "
";
}
?>
page_nav($category, $perpage, $startrow); ?>