0 ? $category : "News Articles"; echo "

$title

"; $articles = $news->get_articles($category, $perpage, $startrow); if(count($articles)==0) { echo "

No Current Articles

"; echo "

Check back soon!


"; } else { foreach($articles as $article) { // - remove title as a link --- echo "

{$article['title']}

"; echo "

{$article['title']}

"; // echo "

{$article['title']}

"; echo "" . format_unix_date($article['post_date'], 1) . "
"; echo "

" . trail($article['short_description'] ? $article['short_description'] : $article['article'],350,1,1) . "

Read more...


"; echo "
"; } } ?>
page_nav($category, $perpage, $startrow); ?>