Unable to locate the model you have specified - CodeIgniter Issue

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

    1. Make the model class name Uppercase My_model
    2. Make the model php file name Lowercase my_model
    3. Load the model using Lowercase (file name) $this->load->model('my_model');

提交回复
热议问题