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

前端 未结 16 1298
耶瑟儿~
耶瑟儿~ 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:31

    First letter of file name and class name must be in Uppercase.

    Your model class will be

    class Logon_model extends CI_Model

    and the file name will be Logon_model.php

    Access it from your contoller like

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

提交回复
热议问题