Archive for the ‘helpers’ Tag
Load multiple helpers in codeigniter
Guys, it’s easy to load multiple helpers in codeigniter… You don’t have to type :
$this->load->helper(‘url’);
$this->load->helper(‘form’);
But, it’s easy to load multiple helpers. Just type :
$this->load->helper(array(‘form’, ‘url’));
and, you have just got your helper classes !!!easy isn’t it ?
Leave a Comment