Guest User

Untitled

a guest
Jan 17th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. $this->new_group = $this->CI->load->database('new_group', TRUE);
  2. $q = $this->new_group->query("SELECT* FROM mytable ORDER BY id DESC");
  3.  
  4. $db['new_group']['pconnect'] = FALSE;
  5.  
  6. $this->new_group = $this->load->database('new_group', TRUE);
  7. $q = $this->new_group->query("SELECT* FROM mytable ORDER BY id DESC");
  8.  
  9. $this->CI =& get_instance();
  10. $this->new_group = $this->CI->load->database('new_group', TRUE);
  11. $q = $this->new_group->query("SELECT* FROM mytable ORDER BY id DESC");
Add Comment
Please, Sign In to add comment