codeigniterのフォーラムで作業していて、カテゴリにThredがいくつあるかを表示したいのですが、私の問題は、すでに投稿されているカテゴリのみが表示されることです。
投稿はありませんが、すべてのカテゴリを表示したいと思います。どうやってやるの ?。
これが私のモデルファイルです
//Load the category list to the forum frontpage
function loadCategoryList() {
$this->db->select('forumCategory.id as categoryID, category, description, COUNT(forumThread.id) as threadID');
$this->db->where('forumCategory.approved', 'yes');
$this->db->join('forumThread', 'forumThread.fk_forumCategory = forumCategory.id');
$this->db->group_by('categoryID');
$loadCategory = $this->db->get('forumCategory');
return $loadCategory->result();
}