My ultimate goal is to strip the query string from the url using php. So I don't want to remove it before PHP has a change to use the query string parameters.
I want to take: "http://www.mysite.com?id=3993993"
and do something with $_GET['id'] using PHP,
and then remove "?id=3993993" from the url leaving us with "http://www.mysite.com".
Any ideas on how this can be done?