[eluser]Unknown[/eluser]
news_model.php
Code:
class News_model extends CI_Model {
public function __construct()
{
$this->load->database();
}
}
news.php
Code:
class News extends CI_Controller {
public function __construct()
{
parent::__construct();
$this->load->model('News_model');
}
}
and i am getting an error like.."Unable to locate the model you have specified: news_model"
i am unable to find any solution i did lots of google but still not find the solution
please help me.
Any help will be greatly appriciated
Thanks in advance.