Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What helpers in codeigniter are and how you can load a helper file?

Answer Posted / Anil Rai

Helpers in CodeIgniter are reusable PHP libraries that provide common functionality. To use a helper, you need to load it using the $this->load->helper() function within your controller or view. For example, to load the url helper: nn```phpnclass My_Controller extends CI_Controller {ntpublic function __construct() {nttparent::__construct();ntt$this->load->helper('url'); // Loading the URL Helpernt}n}n``

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to add / link an images/css/javascript from a view in ci?

703