I am experiencing the same problem!!
According to everything I have read this SHOULD WORK, but it doesn't seem to.
php ver. 4.2.1
I have had a problem with passing a variable from page to page using both the post and get form method.
I suspect I have something in my php.ini configed incorrectly. Using the default php.ini-recommended file that shipped with the tgz file.
When I use the code below I get a blank screen for processing page. I just want to see the variables pass from page to page.
Thanks for you help in advance. 8)
input page---------
<form action=authentication.php method=post>
<span class=ArticleHeadingLeft>First Name:<br></span>
<input type=text name=uname><br>
<span class=ArticleHeadingLeft>Last Name:<br></span>
<input type=password name=upass><br>
<input type=submit value=Login>
<input type=reset value=Reset>
</form>
/input page---------
processing page-----"authentication.php"
<?php
print $uname;
print $upass;
?>
/processing page-----