Guest User

Untitled

a guest
Jul 22nd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. $this->db->select('age');
  2. $this->db->where('id', '3');
  3. $q = $this->db->get('my_users_table');
  4. $data = $q->result_array();
  5.  
  6. echo($data[0]['age']);
Add Comment
Please, Sign In to add comment