In controllers\home.php there is a class called home and function called index. And right there I have $data['users'] = $this->users->table();
And there is Class Users extends CI_Model within models\users.php.
But CodeIgniter says that Call to a member function table() on a non-object in C:\Program Files (x86)\EasyPHP-12.1\www\HCAWebApp\application\controllers\home.php on line 22 aka where the $data['users'] = $this->users->table(); line is located.
What is wrong with my code? I think it cannot locate the users.php.
You need to load the model prior to calling
$this->usersvia$this->load->model('users').