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
C:\\wamp\\www\\cr8v\\application\\models
The name needs to be the same in all places:
Here:
class Math_model extends CI_Model { // your model }
$this->load->model("math_model");
When using it:
$this->math_model->add();
And: in your file system. So rename math.php to math_model.php and it will work.
math.php
math_model.php