post request parameters are lost
I'm using Apache 1.3.12 and php 4.2.2 on win2k! Php webpages
works fine, only post-request parameters are lost when I call new php page.
example:
I have html file:
**********************************
<html>
<head>
</head>
<body>
<form action="my_first.php" method="post"><br>
Name: <input type=text name="name"><br>
<input type=submit value="Go">
</form>
</body>
</html>
**********************************
my_first.php
**********************************
<html>
<head>
</head>
<body>
<?php
echo "Hello " .$name;
?>
</body>
</html>
**********************************
If I write something into Name field and click 'Go', only 'Hello '
is displayed on the next page - .$name has null value.
Can somebody help me? Is there something wrong with Apache
configuration?
Tomaz