I'm using a search that create a query string for MySQL and show the result. The thing is that the query doesn't have the same length of variable each time a search is made.
I was wondering if in .htaccess it's possible to make a mod_rewrite depending on how much variable I throw at it.
Instead of having this in the URL
results.php?var1=something&var2=something&var3=.....
I get this
results/var1/something/var2/something/var3/something...
But remember that the numbers of vars can change depending on which checkboxes are checked by the user on the search form.
I hope it's clear if not I'll try to add more example.