Which function in CodeIgniter is used to manually connect to a database if 'auto-connect' is set to false?

  • $this->db->connect()
  • $this->db->initialize()
  • $this->db->manual_connect()
  • $this->load->database()
If 'auto-connect' is set to false, the $this->db->initialize() function is used in CodeIgniter to manually connect to the database.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *