I am having problems using the mail() function.
I have a first page (test.php), it has a form on it with a few textboxes and a submit button.
<FORM METHOD="post" action="enterContest.php">
<input type="text" name="answer">
<INPUT TYPE=submit" name="send">
On the 'enterContest.php' page I am using the following code:
$theAnswer = $_GET["answer"];
But for some reason it will not get the varialbes from 'test.php' no matter what. Any help?