How do I set a URL variable to something else once it is in the URL header
say I have passed a variable to a php script
http://www.test.com/index.php?br=1&query=test
in index.php I want to set br=0 but I am not calling the url a link but in the URL string I want br=0 and I dont want to do a header( Location:...) call:
$br= $HTTP_GET_VARS["br"];
$query=$HTTP_GET_VARS["query"];
if ($br==1 && $query!="")
{
$br=0;
$results=doquery($query);
echo($results);
}