If you have a question or problem, please use the
Questions/problems
area instead of the Message boards.
Do a keyword search
of messages.
";
function show_category($category) {
echo "
", $category->name, " |
";
$forums = getForums($category->id);
while ($forum = mysql_fetch_object($forums)) {
show_forum_summary($forum);
}
}
function show_forums() {
$categories = getCategories();
while ($category = mysql_fetch_object($categories)) {
show_category($category);
}
}
start_forum_table(array("Topic", "Threads", "Posts", "Last post"));
show_forums();
end_table();
page_tail();
?>