Search code examples
codeigniter

How to access DB config in CodeIgniter?


In my application, I need to know what values are assigned to the DB config items such as database, username, etc. How do I access those information?


Solution

  • You can retrieve it with this: http://codeigniter.com/user_guide/libraries/config.html

    $this->config->item('item name');