Google News
logo
CodeIgniter - Interview Questions
How can you load multiple helper files?
To load multiple helper files, specify them in an array,
$this->load->helper(  
 array('helper1', 'helper2', 'helper3')  
);
Advertisement