0
The page loads this error below:
Message: Non-static method util::loadView() should not be called statically, assuming $this from incompatible context
Code where message indicates error:
class Home extends CI_Controller {
public function __construct()
{
parent::__construct();
}
function index() {
util::loadView('home/index');
}
}
At first it worked, thank you.
– Rodrigo Klaes
You’re welcome, I’m glad I could help.
– Pedro Souza