boinc/html/user/forum_help_desk.php

53 lines
1.2 KiB
PHP

<?php
$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit
require_once('../inc/forum.inc');
require_once('../inc/util.inc');
require_once('../inc/time.inc');
db_init();
get_logged_in_user(false);
page_head("Questions and answers");
echo "<p>
Talk live via Skype with a volunteer, in any of several languages.
Go to
<a href=\"http://boinc.berkeley.edu/help.php\">BOINC Online Help</a>.</p>
";
show_forum_title(null, null);
start_forum_table(array("Topic", "# Questions", "Last post"));
$categories = getHelpDeskCategories();
while ($category = mysql_fetch_object($categories)) {
echo "
<tr class=\"subtitle\">
<td class=\"category\" colspan=\"4\">", $category->name, "</td>
</tr>
";
$forums = getForums($category->id);
while ($forum = mysql_fetch_object($forums)) {
echo "
<tr class=\"row1\">
<td>
<b><a href=\"forum_forum.php?id=$forum->id\">$forum->title</a></b>
<br>", $forum->description, "
</td>
<td>", $forum->threads, "</td>
<td>", time_diff_str($forum->timestamp, time()), "</td>
</tr>
";
}
}
echo "
</table>
</p>
";
page_tail();
?>