Hi,
I just reinstalled my server with Redhat 9 (apache 2 + php 4.2.2)
I've the probleme with the post method.
This following code works fine with get method (and apache 1.3 with post) but not with post method.
<form action=test.php method=post>
<input type=text name=field value='value'>
<input type=submit>
</form>
in test.php
Code:
echo "RESULT=".$field;
with post method : RESULT=valuefield=value
with get method : RESULT=value
In php.ini :
register_global=On
magic_quotes_gpc=On
magic_quotes_runtime=Off
magic_quotes_sybase=Off
Can somebody help me ?
Thanks
Laurent