基本上我有一个允许用户发布主题的页面,该表的字段是..
- topic_id
- 类别
- 子类别
- 主题数据
- 发布者
- 张贴
我正在尝试在输出页面上配置页面,以便如果用户发布到类别“General”和 sub_category“Stuff”,它将显示包含类别名称 General 和 Stuff 的 Sub_cat 的所有记录。
这是我的代码,它目前显示一个没有错误的空白屏幕。
$sql = "SELECT users.user_id, users.username, users.profile, topics.topic_id,
topics.category, topics.sub_category, topics.topic_data,
topics.posted_by, topics.posted, topics.view, topics.reply
FROM users, topics
WHERE topics.category = '" . $_GET['category'] . "'
AND topics.sub_category = '" . $_GET['sub_category'] . "'
ORDER BY topics.posted DESC";
$result = mysql_query($sql);
while($rows = mysql_fetch_array($result)){
如果我topics.php?category=General
成功使用上面的代码显示General的记录,但不确定这是否是正确的方法。
编辑
在发布主题的地方,我将标题重定向从哪个工作更改topics.php
为topics.php?category=$category&sub_category=$sub_category
,但我在系统上有 2 个用户,现在它发布与两个用户相同的数据....