我目前正在尝试显示成员已上传到我的网站的论文,用户单击一个主题,它会显示该主题下的论文。但是,我的查询只显示了所有论文,而不是具有特定主题的论文。
//time to get our info
//time to get our info
$sql = "SELECT paper.title, paper.username, paper.abstract, paper.filelocation FROM `paper`, `topic` WHERE topic_name = 'artificial intelligence' ";
$result = mysql_query($sql);
while($file = mysql_fetch_array($result)){
echo '<li>';
echo '<h1>'.$file['title'].'</h1><br />';
//now the file info and link
echo '<h3>Uploaded By: '.$file['username'].'</h3><br />';
echo '<a href="'.$file['filelocation'].'">'.$file['title'].'</a>';
echo '<h1> Abstract : ' .$file['abstract'].'</h1><br />';
echo '</li>';
}
?>
</ul
这是我的桌子
paper_id topic_id
话题
topic_id 主题名称
纸
paper_id 标题 用户名 摘要 文件位置