i want to filter the url based on some parameters in it, separated by a plus (+).
This is a sample url:
http://localhost/a.php?f1=a+b+1&f2=c+d+2&f3=e+f+3&.............
Now i want to get each of the parameters in f1, f2, f3....... like i want to fetch the values of a, b, and 1 from parameter f1.
How can i go ahead with this...