I wonder what is the most appropriate way to do in this scenario:
Assume there is a link (method) called browse. When user clicks on that link the page shows a list of cities. When user click on some city the page shows available categories for that city. When some category is clicked the page shows sub categories for selected category.
When user click on some link of sub categories the page is reloaded and show a result based on selected city, category and sub category.
For example the URI will look like
foo.bar/browse/city/rubrics/subrubric/
Which is the right way to do with CodeIgniter?