codeigniter loading models list errors -
codeigniter loading models list errors -
i loading models in controller can utilize them in view there weird problem going on doesnt allow me load model1 above model2 , throws error... if switch how load them work fine...
ex.
$this->load->model("model1"); $this->load->model("model2");
gives error model1 doesnt load below when phone call function model1 model throws error.
$this->load->model("model2"); $this->load->model("model1");
works.
the problem was extending ci_controller in of models , not ci_model... seems working now...
codeigniter model
Comments
Post a Comment