Are you trying to get the name of the variable?
If so, the variable names and values are available
in an array. I don't know off hand how you can grab
it explicitly, but you can loop through all the
variables.
For instance, the following code on
test.php?id=me&hello=howdy
<?php
while (list($name, $val) = each($HTTP_GET_VARS)) {
echo "$name: $val<br>";
}
?>
will display:
id: me
hello: howdy
Of course, you can assign values instead of echoing the results
Is that what you are trying to do?