Welcome Guest, Not a member yet? Register   Sign In
Call $this->db from initController in __construct?
#3

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();
$dbData = $db->query("SELECT * FROM myTable");
Reply


Messages In This Thread
RE: Call $this->db from initController in __construct? - by kilishan - 06-14-2019, 07:10 PM



Theme © iAndrew 2016 - Forum software by © MyBB