lets say I have a page
"http://whatever.com/index.php?find=this&go=that"
is there a way I can grab the
"index.php?find=this&go=that"
out of the browser without actually having to manually look for it? The reason I can not manually look for it is because I might get a url that is
"http://whatever.com/index.php?go=here&whatever=that&me=do"
and then I will need the
"index.php?go=here&whatever=that&me=do"
and not the
"index.php?find=this&go=that"
I need this for redirects in my CMS so that all the sessions can be set before the user has a chance to do anything that way the initial visit might take a few extra seconds to load, but from there on it will load faster and be more effecient.