Apache, php auto parameter variable empty
Sorry, don't know if this is a setup, newbie or programming question.
Red Hat Linux 8, Apache/2.0.47 (Unix) PHP/4.3.3
Automatic assignment of html parameters seems not to be working. Setups were all by the book. No changes to defaults.
Same files work with newest windows xp php, apache versions.
Could there be some config needed in php, apache?
I know these are relatively new versions, but this couldn't be a bug could it?
File 1.php ==>
<html>
<body>
<form method="GET" action="2.php">
<input type="text" name="parm1">
<input type="submit">
</form>
</body>
</html>
Display in browser, enter anything, press submit.
File 2.php ==>
<html>
<body>
The value of parm1 is : <? echo $parm1; ?> always empty.
</html>
</body>
|