I've compiled php/apache on Linux RedHat 7.2 but a very simple form that submits data to a php script passes, or nothing, is received.
"register_globals" has been off and on but makes no difference.
The form :-
<FORM method=post action="form.php">
<input name=field1 value="some data">
</FORM>
and the PHP :-
echo $_POST["field1"];
Has there been some new config stuff i've missed?
Any ideas appreciated.