How do I load CodeIgniter helpers in every page? How do I load CodeIgniter helpers in every page? codeigniter codeigniter

How do I load CodeIgniter helpers in every page?


If you're needing these that often, you should just add those to your helpers autoload:

In /application/config/autoload.php around line 93, change

$autoload['helper'] = array();

to

$autoload['helper'] = array('html', 'url');

Then, they're loaded on every request.


Simple, add them to the autoload file. That way they'll be accessible from any file, and you won't ever have to call those.