Welcome Guest, Not a member yet? Register   Sign In
call load method from a model
#1

[eluser]joe_h[/eluser]
Hi, I need to call the load method from a class model and I get an error.

To call a class model from a model class to do?
#2

[eluser]CroNiX[/eluser]
Do you have to do it from the model? It should really be done in the controller.
Code:
$this->load->model('user_model');
$this->load->model('account_model');

// get current user
$user = $this->user_model->get_user_data();

// get account data for current user by passing ID from previous model method.
$accounts = $this->account_model->get_user_account($user['id']);
#3

[eluser]joe_h[/eluser]
Ok, thank you very much




Theme © iAndrew 2016 - Forum software by © MyBB