Database ConfigurationIn CodeIgniter, go to application/config/databse.php for database configuration file. In database.php file, fill the entries to connect CodeIgniter folder to your database. The config settings are stored in a multi-dimensional array as shown above. Fill out your connection details to connect to database. You can also specify failover in the situation where main connection cannot be established. This can be specified by setting failover as shown below. You can write as many failovers as you want. Automatically connecting DatabaseThe auto connect feature will load your database class with every page load. To add auto connect go to application/config/autoload.php and add the word database to library array. Manually connecting DatabaseIf you need to connect database only in some pages of your project, you can use below code to add the database connectivity in any page, or add it to your class constructor which will make the database globally available for that class. Connecting multiple DatabaseIf you need to connect more than one database simultaneously, do the following. Here, group_one and group_two are the group names which will be replaced by your group name.
Next TopicCodeIgniter Database INSERT record
|