A solution if you dont know the variable name could be
taking the query string to be $name123&$value567
<?php
$bits=explode("&", $QUERY_STRING);
for ( $temp=0; $temp<count($bits); $temp++ )
{
$varname=eregi_replace("[0-9]", "", $bits[$temp]);
$varval=eregi_replace("[0-9]", "", $bits[$temp]);
${$varname}=$varval;
echo "Variable name ".$varname." value is ".$varval."<BR>";
}
?>
Mark.