Unable to locate the model you have specified - CodeIgniter Issue

后端 未结 9 464
不知归路
不知归路 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:36

    $this->load->model('1/Gift_model'); should be $this->load->model('1/gift_model');. Lowercase on this load argument and the php filename, uppercase on the class name within the file (you had two of three correct).

提交回复
热议问题