Welcome Guest, Not a member yet? Register   Sign In
Routes help
#2

[eluser]janogarcia[/eluser]
Hi, try this

Code:
$route['store/:any/(:any)'] = "store/product_info/$1";

Or if you prefer to fetch each segment at controller level,

Code:
$route['store/:any'] = "store/product_info";

Then, in your controller constructor or in the product_info() method you would fetch each segment as folllows:

Code:
$product_category = $this->uri->segment(2);
$product_id = $this->uri->segment(3);


Messages In This Thread
Routes help - by El Forum - 12-28-2009, 04:06 AM
Routes help - by El Forum - 12-28-2009, 07:56 AM



Theme © iAndrew 2016 - Forum software by © MyBB