I see two types of contructors in CI. For instance...
class Blog extends CI_Controller
{
function __construct()
{
parent::__construct();
}
}
and
class Blog extends CI_Controller
{
function Blog()
{
parent::Controller();
}
}
What is the difference between them? I'm not sure which to choose.