The page loads this error below:
Message: Non-static method util :: loadView () should not be called statically, assuming $ this from incompatible context
Code where the message indicates the error:
class Home extends CI_Controller {
public function __construct()
{
parent::__construct();
}
function index() {
util::loadView('home/index');
}
}