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

Popular posts from this blog

delphi - blogger via idHTTP : error 400 bad request -

c++ - compiler errors when initializing EXPECT_CALL with function which has program_options::variables_map as parameter -

How do I check if an insert was successful with MySQLdb in Python? -