Hi,
I am a complete newbie when it comes to PHP.
I have installed Apache PHP and MySQL on my home computer for testing purposes and I have bought myself a PHP book.
But when I try out the first example in the book things already start going wrong, here is my problem.
If I write this form in HTML:
<FORM ACTION="process.php" METHOD="post">
<B>Name</B><INPUT TYPE="text" NAME="name">
<BR><INPUT TYPE="submit" VALUE="Sign">
</FORM>
My book says that if I would create such a form and send it to a php script that I would have a variable $submit that equals "Sign!" if I try this out PHP gives me an error message that $submit is not defined.
Is there anyone who has an explanation for this?