Module model doesn't work?
Hi, I have a comment model, located in /module/guestbook/comment.php.
When I use this code in my controller:
$record = new $this->Comments_model;
echo $record->is_initialized(); // Returns TRUE
it says Fatal error: Class 'CI_Model' not found in C:\xampp\htdocs\fuel\fuel\application\core\MY_Model.php on line 35
What am I doing wrong?
Thanks in advance!
Comments
$this->load->module_model('guestbook', 'comments_model'); $record = $this->comments_model->create(); // then you can set values on the record like so: $record->name = 'My Name Goes here'; ... $record->save();
Fatal error: Class 'CI_Model' not found in C:\xampp\htdocs\fuel\fuel\application\core\MY_Model.php on line 35
something else must be wrong?