Guest User

Untitled

a guest
Dec 12th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. // Default query database
  2. $this->db->select('first_name, last_name');
  3. $this->db->from('tbl_users');
  4. $this->db->where('id', 99);
  5. $query = $this->db->get();
  6.  
  7. // Query dari database kedua
  8. $db2->select('image');
  9. $db2->from('tbl_images');
  10. $db2->where('id', 25);
  11. $query = $db2->get();
Add Comment
Please, Sign In to add comment