[eluser]JamieBarton[/eluser]
Hi guys,
I have the following route:
Code:
$route['events/(:any)'] = "events/city/$1";
However, I have pagination in the event controller, a method called date.
Which I have also a route which is accessed by the following route:
Code:
$route['events/date'] = "events/date";
Now, with pagination...
How do I set-up the routes to work with that.
My pagination works fine if I comment out my route for events/city/$1...
I don't know how to make this work.
The controller that is for the pagination is:
Code:
$config['base_url'] = site_url('events/date/more');
Hope someone can be of some help...?
Regards,
Jamie