Welcome Guest, Not a member yet? Register   Sign In
Routing with dynamic Event ID in URL for event managment system
#6

[eluser]TWP Marketing[/eluser]
You can pass as many parameters as you wish:
Code:
/controller/method/param1/param2/param3/...
They can be accessed using the URI class:
Code:
$param1 = $this->uri->segment(3); // note the segment numbers
$param2 = $this->uri->segment(4);
$param3 = $this->uri->segment(5);
This is explained in the User Guide:
http://ellislab.com/codeigniter/user-gui...s/uri.html


Messages In This Thread
Routing with dynamic Event ID in URL for event managment system - by El Forum - 09-08-2012, 10:11 AM



Theme © iAndrew 2016 - Forum software by © MyBB