Guest User

Untitled

a guest
Aug 16th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. CodeIgniter - Active Record class join
  2. $this->db->join('film_category', 'film.film_id = film_category.film_id');
  3.  
  4. $this->db->where('film_category.category_id',1);
  5.  
  6. $query = $this->db->get('film');
  7.  
  8. $result=$query->num_rows();
  9.  
  10. return $result;
Add Comment
Please, Sign In to add comment