Call $this->db from initController in __construct? |
Hi,
is it possible to use $this->db in controller in __construct function from BaseController? This is my code: PHP Code: public function __construct() However, I get a "We hit a snag" error.
rename the env file to .env. Edit the file and set CI_ENVIRONMENT to development.
Then you'll get an error message describing what went wrong that will answer your question.
Simpler is always better
donpwinston is right. That way you'll be able to see the errors. However I can tell you one right off the bat.
The $this->db doesn't work like you're used to in previous versions of CI. There is no more CI "superobject". You need to instantiate the things you need by calling new ClassName() and the like. For databases, there's the quick connection method of: Code: $db = db_connect(); |
Welcome Guest, Not a member yet? Register Sign In |