$this->load->model() not working in CodeIgniter

前端 未结 5 1680
攒了一身酷
攒了一身酷 2021-01-13 19:52

I\'m using CodeIgniter 2.1.2 and here\'s my situation right now. I have a model named math.php in C:\\wamp\\www\\cr8v\\application\\models. I am trying to load

5条回答
  •  一整个雨季
    2021-01-13 20:31

    File name and model name should be same try this instead

    class Math_model extends CI_Model {
       // your code
    }
    

    and the file name should be Math_model.php

提交回复
热议问题