Guest User

Untitled

a guest
May 24th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. $this->db->select('*');
  2. $this->db->from('booking');
  3. $this->db->join('offering','offering.off_id=booking.off_id','left');
  4. $this->db->join('offering_rate','offering.off_id=offering_rate.off_id','left');
  5. $this->db->where('value',$_SESSION['value']);
  6.  
  7. //$this->db->group_by('offering_rate.off_id');
  8. //$this->db->order_by('offrate_id','desc');
  9. $query = $this->db->get();
  10.  
  11. if ($query->num_rows() > 0) return $query->result_array();
Add Comment
Please, Sign In to add comment