I am trying to pass a URL in a querystring as an argument but because the URL value has its own querystring( ex. index.php?url=/something.php?this=that&me=dumb ) it does not store the whole URL in the variable url.
The problem is that the "&" in the URL will basically create another variable called "me" with the value "dumb". I don't want that. I want the whole querystring stored in the variable url
How can I make it so that does not happen and I am able to pass the whole url as a variable instead?
Thanks in advance for any help and ideas.
Jomama