CodeIgniter PHP Model Access “Unable to locate the model you have specified”

前端 未结 16 1260
耶瑟儿~
耶瑟儿~ 2020-11-30 02:10

I have been trying to load some models for this website I am building. However, for an unknown reason, it will bring the following error :

An Error Was Encou         


        
16条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-30 02:13

    Here is what a model should look like: Make sure yours is like this.

        

    note the upper-case class name.

    To load it use:

    $this->load->model('logon_model');
    

    note all lower case.

提交回复
热议问题