我有以下代碼用於從mysql數據庫中選擇記錄並加載博客文章,我想要做的是統計b_id
和id
的匹配記錄數並仍然顯示博客帖子。PHP/MySQL選擇和計數匹配記錄
$result = $dbc->prepare("SELECT id, title, post, date, time, blog, b_id, name, comment FROM blog ORDER BY id DESC LIMIT $start_blog , $blog_per_page");
$result->execute();
$result->bind_result($id, $title, $post, $date, $time, $blog, $b_id, $name, $comment);
while ($row = $result->fetch()) {
Code to show the blog posts
Show number of comments on the post i.e. Comments (2)
}
我必須有一個空白的時刻,因爲我相信它的東西很簡單,但每當我使用的代碼
count (b_id) WHERE b_id = id
的博客文章沒有顯示(即其計數的比賽和不發送博客文章的數據。
希望這是有道理
問候 吉姆