Welcome Guest, Not a member yet? Register   Sign In
helpers function
#2

[eluser]royduin[/eluser]
With
Code:
$this->load->helper("url");
You load the url helper in system/helpers/url_helper.php
If loaded you have access to those functions, see: http://ellislab.com/codeigniter/user-gui...elper.html

If you need these functions on only one page you call
Code:
$this->load->helper("url");

If you're using the url helper on multiple pages it's recommended to autoload this by adding "url" to the autoloader array:
Code:
$autoload['helper'] = array("url");
Found in application/config/autoload.php


Messages In This Thread
helpers function - by El Forum - 10-02-2012, 09:28 PM
helpers function - by El Forum - 10-03-2012, 04:10 AM
helpers function - by El Forum - 10-04-2012, 01:51 AM



Theme © iAndrew 2016 - Forum software by © MyBB