I'm trying this simple code:
I have one file with:
form name="xform" action="output_form.php" method="get">
<input name="gobutton" type="submit" value="Go" />
<input name="client" type="text"/>
</form>
and another...
<?php
echo $_SERVER['QUERY_STRING'];
echo $_GET['client'];
?>
I get output from "$_SERVER['QUERY_STRING'];" but not from "$_GET['client'];"
the url is "output_form.php?gobutton=Go&client=test"