Helper not loading in Codeigniter? Helper not loading in Codeigniter? codeigniter codeigniter

Helper not loading in Codeigniter?


In the code provided, you have public function _construct() , but it should be public function __construct(). You need to add the double underscore __


Load your helper using an array:

$this->load->helper( array('url') );