I have register_globals on but $_GET is still now working.
I'm doing something very simple to test it.
I have a file with the code:
form name="xform" action="output_form.php" method="get">
<input name="gobutton" type="submit" value="Go" />
<input name="client" type="text"/>
</form>
...and another file with the code:
<?php
echo $SERVER['QUERY_STRING'];
echo $GET['client'];
?>
I get output for echo $SERVER['QUERY_STRING'] but not for echo $GET['client']
I don't understand why it doesn't work, please help.