display_id が引数である bookdetails テーブルの行をカウントしようとしています。私が合格したとしましょう$id='3'
。しかし、私は出力を得ていません。私が試しているコードは間違っていると思います。このクエリを正しく書くのを手伝ってください
//--- Counting the rows of bookdetails of table where display_id is as argument-------------------------------------------------------------
public function record_count_for_secondtopBooks($id) {
$this->load->database();
return $this->db->count_all("bookdetails",array('display_id'=>$id));
}