print("$_SERVER[QUERY_STRING]
");
print("
");
foreach ($_GET as $key => $value){
print("GET -> $key -> $value
\n");
${$key} = $value;
}
if($_GET[a] == "test"){
print("a = test\n");
}else
print("a != test\n");
if($a == "test"){
print("a = test\n");
}else{
print("a != test\n");
}
echo phpinfo();
?>