I have been trying to load some models for this website I am building. However, for an unknown reason, it will bring the following error :
An Error Was Encou
Adding to @jakentus answer, below is what worked for me:
Change the file name in the models package to Logon_model.php (First letter upper case as @jakentus correctly said)
Change the class name as same as file name i.e.
class Logon_model extends CI_Model
Change the name in the load method too as
$this->load->model('Logon_model');
Hope this helps. Happy coding. :)