I just installed PHP 4.2.2 and thttpd 2.21. When I try to do a form post, no values seem to be passing.
For example:
PAGE1:
<form action="page2.php" method="post">
<input type=text name="something" value="stuff here"><p>
<input type=submit value="Submit">
</form>
PAGE2:
Value is: <?= $something ?>
Is there something special I need to do at installation to allow form posting? Thanks in advance.