";
start_forum_table(array("Help Desk", "Questions", "Last Answer Posted"), array(NULL, 60, 160));
$categories = getHelpDeskCategories();
while ($category = mysql_fetch_object($categories)) {
echo "
", $category->name, " |
";
$forums = getForums($category->id);
while ($forum = mysql_fetch_object($forums)) {
echo "
id, "\">", $forum->title, "
", $forum->description, "
|
", $forum->threads, " |
", pretty_time_str($forum->timestamp), " |
";
}
}
echo "
";
page_tail();
?>