0 votes
in CodeIgniter by
edited by

How to connect multiple databases in CodeIgniter?

🔗Source: CodeIgniter Interview Questions and Answers

🔗Source: JAVA Interview Questions and Answers

1 Answer

0 votes
by
To connect more than one database simultaneously, do the following,

$db1 = $this->load->database('group_one', TRUE);  

$db1 = $this->load->database('group_two', TRUE);

Related questions

0 votes
asked Dec 28, 2020 in CodeIgniter by SakshiSharma
0 votes
asked Dec 30, 2020 in CodeIgniter by SakshiSharma
...