Welcome Guest, Not a member yet? Register   Sign In
$this->load->model('Account'); doesn't work.. i had to use $this->load->model('Account_model');
#4

[eluser]Twisted1919[/eluser]
File name must start with a uppercase character and continue with lowercase chars till the end.
Example: Account_model.php
Class definition in the file should be the same.
Example: class Account_model extends CI_Model{}
Loading of model is done in lowercase.
Example: $this->load->model('account_model'); $this->account_model->whatever();

Got it ?

L.E: i bet you are developing under windows right now.
You will have big surprises when you will go live with your site on a linux machine if you don't respect the file name / class name / load class convention .


Messages In This Thread
$this->load->model('Account'); doesn't work.. i had to use $this->load->model('Account_model'); - by El Forum - 04-25-2011, 07:04 PM



Theme © iAndrew 2016 - Forum software by © MyBB