Reputation: 39
I tried making a login function using CodeIgniter framework. But, I have this error.
And I have a construct in login controller class.
the error is "can't load Model"
Upvotes: 0
Views: 77
Reputation:
I think you have miss spelled
Change
laod
to
load
on line 21
Also rename your controller where the first letter is only upper case on class and file name as what user guide says
http://www.codeigniter.com/user_guide/general/styleguide.html#file-naming
Upvotes: 2