2つのテーブルを取得してコントローラーに渡すのに問題があります。
モデル内:
function get_all_entries() {
$query = $this->db->get('entry');
return $query->result();
$this->db->select('entry_id , count(comment_id) as total_comment');
$this->db->group_by('entry_id');
$comment = $this->db->get('comment');
return $comment->result();
}
コントローラー内:
$data['query'] = $this->blog_model->get_all_entries();
$this->load->view('blog/index',$data);
変数をコントローラーに戻す$query
にはどうすればよいですか?$comment
私はそれを間違っていると思います。