Guest User

Untitled

a guest
Jan 21st, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. $this->db->select('id, category, description, forumThread.id as threadID');
  2.         $this->db->where('approved', 'yes');
  3.         $this->db->join('forumThread', 'forumThread.fk_forumCategory = forumCategory.id');
  4.         $loadCategory = $this->db->get('forumCategory');
  5.        
  6.         return $loadCategory->result();
Add Comment
Please, Sign In to add comment