Got some error in codeigniter when trying to call parent class. This is what I did :
class Email extends CI_Controller
{
function __construct()
{
parent::Controller();
}
}
And this is the error :
Fatal error: Call to undefined method CI_Controller::Controller() in C:\xampp\htdocs\ci-nettuts-d3\application\controllers\email.php on line 11