I've been struggling with this for two days--I finally tried to just cut and paste the following, but I still have the same problem: I get the mail with To, From, and Subject, but the Message area is always blank. (All I see is a blinking cursor in the area where the message should be.
All I can figure is that it's a configuration problem--but I follwed the instructions on setting up php.ini, etc., very carefully.
I'm running Apache 1.3.x on an NT4 machine with phpn 4.3.2. I've gone over all the FAQs and Forums, and it seems that I must be the only chump with this problem!
Here's the simple code I'm currently using:
<html>
<head><title>feedback</title></head>
<body>
<FORM method=post action="sendmail.php">
Email: <INPUT name="email" type="text"><br>
Message:<br>
<TEXTAREA name="message">
</textarea><br>
<input type=submit>
</FORM>
</body>
</html>
*********here's the php*************
<?
mail( "dave@rjscollects.com", "Feedback Form Results",
$message, "From: $email" );
header( "Location: http://www.rjscollects.com/thankyou.html" );
?>
By the way, the thankyou.html page displays just fine. I just can't get the darn message...which is pretty much the point of all this!