Unable to locate the model you have specified - CodeIgniter Issue

后端 未结 9 462
不知归路
不知归路 2021-01-14 03:55

I\'m getting an unable to locate model error.

$this->load->model(\'1/Gift_model\');

My model file name is gift_model.php

9条回答
  •  情话喂你
    2021-01-14 04:19

    `if using codeignitor 3.1.3
    every thing same otherwise showing error class name => My_model

    file name => My_model.php

    load model => $this->load->model('My_model');

    call function => $this->My_model->function();`

提交回复
热议问题