I would like to access the $db['default']['dbprefix']
variable from /application/config/database.php
(CodeIgniter configuration file) from within a model so I can write my own queries using the value from the file.
How can this be done?
I would like to access the $db['default']['dbprefix']
variable from /application/config/database.php
(CodeIgniter configuration file) from within a model so I can write my own queries using the value from the file.
How can this be done?
Try:
Normally you can use $this->config->item but I think that only allows variables set in $config
The documentation says you should be using:
Doesn't make a huge amount of difference but could be an easier syntax.