Why am I getting a member function error in my codeigniter library?

It's because the user_model property is undeclared According to Codeigniter manual the property name of a model object equals to the value of the argument given to model() method In PHP variable names are case sensitive User_model does not equal to user_model Try what happens with: $user = $this->ci->User_model->getuserbyemail($param"email").

It's because the user_model property is undeclared. According to Codeigniter manual, the property name of a model object equals to the value of the argument given to model() method. In PHP variable names are case sensitive.

User_model does not equal to user_model. Try what happens with: $user = $this->ci->User_model->getuserbyemail($param"email").

Absolutely right. I was treating it like a library. Doh!

– Piers Feb 6 at 17:06.

I getting a member function error because (without quotes):.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions