I am trying to add a few different GET variables to the url.
I could easily do a header redirect to the current page url and then just add the $_GET['test'] in the url.
My problem is that I have some GET variables that are in the url already. What I want to do is:
Check if there are any GET variables in the url
If there is not, then redirect to the current url with the new GET['test'] variable at the end of the url.
If there is, but there is no GET['test'] variable in the url, then keep those other GET values in the url and add the GET['test'] variable to end of the full url string
If there is, AND there is a GET['test'] variable in the url, then keep those other GET values in the url and exchange the GET['test'] variable value with the new value.
How can I go about checking for all these conditions?