How can i get value from database.php page?
I mean we can access base url by using base_url().The base url set in config.php page like this :
$config['base_url'] = 'example.com';
The database details in database.php is like:
$db['default']['hostname'] = 'localhost';
$db['default']['username'] = 'username';
$db['default']['password'] = 'password';
$db['default']['database'] = 'database_name';
I want to access the this details in my controller page.How can i do this?
1 Answer