我想在定制的论坛上为不同的用户显示不同的数据,但我不太确定最好的方法。
这是我正在使用的结构:
CREATE TABLE IF NOT EXISTS `forums_forums` (
`forum_id` int(11) NOT NULL auto_increment,
`forum_name` varchar(100) NOT NULL,
`order_number` int(11) NOT NULL default '0',
`posts` int(11) NOT NULL default '0',
`replies` int(11) NOT NULL default '0',
`forum_description` text NOT NULL,
`allow_topics` int(11) NOT NULL default '0',
`admin_only` int(11) NOT NULL default '0',
`team` int(11) NOT NULL,
PRIMARY KEY (`forum_id`),
KEY `forum_name` (`forum_name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=102 ;
默认情况下,每个用户都应该看到所有论坛,不包括管理员和团队特定的论坛。一些用户将成为团队的一员,而其他用户则不会,因此属于团队的用户应该看到所有论坛,包括他们团队特定的论坛,而不是管理员论坛。
如果用户是团队的一员,则用户表具有与论坛团队匹配的相同团队 ID。
这是我刚刚拥有的,但我无法找到最好的方法来改变它:
if ($GLOBALS["USER"]["team"] == 1) {
$a = mysql_query("SELECT * FROM forums_forums ORDER BY order_number");
} else {
$a = mysql_query("SELECT * FROM forums_forums WHERE admin_only=0 ORDER BY order_number");
}
WHILE ($b = mysql_fetch_array($a)) {
?>
<?if ($b["admin_only"] == 1) {?>
<tr bgcolor="#111111" height="100">
<?} else {?>
<tr bgcolor="#000000" height="100">
<?}?>
<td valign="top">
<blockquote style="margin:10px;">
<a href="/forums-view.php?forum_id=<?=$b["forum_id"]?>"><font color="#FFFFCC"><b><?=$b["forum_name"]?></b></font></a>
</blockquote>
</td>
<td align="center"> <b><?=number_format($b["posts"])?></b> </td>
<td align="center"> <b><?=number_format($b["replies"])?></b> </td>
<td valign="top">
<blockquote style="margin:10px;">
<?=$b["forum_description"]?>
</blockquote>
</td>
</tr>
<?}?>
</table>