[eluser]InsiteFX[/eluser]
If your running CodeIgniter v2.0.+ then you have to change Controller to CI_Controller and Model to CI_Model
also the constructor is new!
Code:
public function __construct()
{
// NOTE: The constructor is not need unless you are setting parameters!
parent::__construct();
}
InsiteFX