Guest User

Untitled

a guest
Jun 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. function getJobs ()
  2. {
  3.  
  4. $this->db->limit(4);
  5. $this->db->order_by('jobs.id','DESC');
  6. #$this->db->where('membership','2');
  7. $this->db->where('status','1');
  8.  
  9.  
  10. $this->db->join('user_profile', 'jobs.author_id = user_profile.user_id');
  11.  
  12. $query = $this->db->get('jobs');
  13.  
  14.  
  15. return $query;
  16. }
Add Comment
Please, Sign In to add comment