Say user is going to search on 4 or 5 fields, ok? eg. he might want to search by firstname, email, mobile or even page number
I want that codeigniter's url be like this:
site.com/Controller/Method/variable1/value1/variable2/value2/variable3/value3
or
site.com/Controller/Method/variable2/value2/variable3/value3/variable1/value1
(that they should have the same result)
or in this format
site.com/Controller/Method/variable2/value2/variable4/value4
some examples to clarify my question:
site.com/user/search/firstname/John/mobile/123/page/2
or:
site.com/user/search/lastname/Smith/email/gmail.com
In one sentence: I don't want to force the user to use a specific order when setting value to parameters.