我有两张桌子,Post
和Category
。
邮政
pid title result content cid
1 Option1 Opt content1 2
2 Option2 Opt content2 2
3 Option3 Opt content3 3
类别
cid cname
1 Cat 1
2 Cat 2
3 Cat 3
这是我的insert.php。
mysql_connect('localhost','root','');
mysql_select_db("database") or die("Unable to select database");
$title=$_POST['post_title'];
$result=$_POST['post_result'];
$content=$_POST['post_content'];
$sid=$_POST['cid'];
$date=$_POST['date'];
$insertquery="INSERT INTO review (post_title,post_result,post_content,cid,date)
VALUES('$title','$result','$content',$sid,NOW())";
$result=mysql_query($insertquery);
if(! $result )
{
die('Could not enter data: ' . mysql_error());
}
else {
echo "Entered data successfully\n";
header('Location:home.php');
}
这是我的cat.php,它显示特定类别的帖子。
$link = mysql_connect("localhost","root","");
mysql_select_db("database");
$query="SELECT * FROM category WHERE cid='$cid'";
$result = mysql_query($query) or die("Query to get data failed with error: ".mysql_error());
while($row = mysql_num_rows($result)) {
echo //details goes here
}
这是我在主页上的类别菜单列表。
<ul>
<li><a class="my-button" href="#">Cat 1</a></li>
<li><a class="my-button" href="#">Cat 2</a></li>
<li><a class="my-button" href="#">Cat 3</a></li>
</ul>
这是 javascript。
<script>
$(document).ready(function() {
$('body').on('click', '.my-button', function() {
$("#display").load("cat.php");
});
});
</script>
一切都被正确地插入到数据库中。但我无法在点击时显示特定类别的帖子。
我已经给出了完整的代码。我想要的是,当我在主页上单击 Cat 1 或 Cat 2 或 Cat 3 时,我需要在#display
div 中显示所选类别的 post 表中的所有数据。
我收到一条错误消息:
cid 是未定义的变量
请帮我找到正确的代码。