uh... that really wouldn't matter.
but you could do this at the beginning of your scripts. again - THIS IS RETARDED, don't do this!
reset($HTTP_GET_VARS);
while($array_cell = each($HTTP_GET_VARS)) {
unset($array_cell['value']);
}
$HTTP_GET_VARS = array();
you can also go into php.ini and turn off register globals (or something like that) or reorder the registration order to order the GET variables first (then they will be overwritted by ANYTHING else that happens.
if your script could be hacked by changing the ?id=7 in your URL, then your script is SEVERLY FLAWED. do verification in the script to authorize whatever is going on.