On this page, there is an error.
In the example model, the following is found:
class Blogmodel extends Model {
var $title = '';
var $content = '';
var $date = '';
However, later on, the naming convention is different.
class User_model extends Model {
function User_model()
{
parent::Model();
}
}
Am I missing something, or was there a typo? It’s entirely possible I’m screwed up. I’m a n00b to CodeIgniter.
