Hi,
I think I need some help here... after installing PHP4 my forms won't pass variables anymore.
Here is a sample code I used to check it:
<FORM ACTION="test2.php" METHOD="post">
<INPUT TYPE="TEXT" NAME="name" VALUE="">
<INPUT TYPE="PASSWORD" NAME="pass" VALUE="">
<INPUT TYPE="SUBMIT" NAME="submit" VALUE="Create Your Account"> </FORM>
In test2.php I use this to check the variables content:
echo ”<br>PASS:$pass”;
...and nothing has been submitted...
isset responds that $pass has not been set.
If anyone has any idea, please respond!
Thanks..