That's not the problem. None of my forms are working, see here:
show_feedback.html:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HEAD>
<TITLE>Feedback</TITLE>
</HEAD>
<BODY>
<FORM method="POST" action="do_sendfeedback.php">
<P>Your Name:<br>
<INPUT type="text" name="sender_name" size=30></p>
<P>Your E-Mail Address:<br>
<INPUT type="text" name="sender_email" size=30></p>
<P>Did you like this site?
<INPUT type="radio" name="like_site" value="Yes" checked> yes
<INPUT type="radio" name="like_site" value="No"> no
</p>
<P>Additional Message:<br>
<textarea name="message" cols=30 rows=5></textarea>
</p>
<INPUT type="submit" value="Send This Form">
</FORM>
</BODY>
do_sendfeedback.php:
<?php
$msg = "Sender's Full Name:\t$sender_name\n";
$msg .= "Sender's E-Mail:\t$sender_email\n";
$msg .= "Did You Like the Site?\t$like_site\n";
$msg .= "Additional Message:\t$message\n\n";
// use two newline characters at the end of your content,
// or to insert additional spacing
$mailheaders = "From: My Web Site <randyk@ccsales.com> \n";
$mailheaders .= "Reply-To: $sender_email\n\n";
mail("randyk@ccsales.com", "Feedback Form", $msg, $mailheaders);
echo "<H1 align=center>Thank You, $sender_name</h1>";
echo "<p align=center>We appreciate your feedback.</p>";
?>
It does the mail function but values that were posted are left out, $msg has only the text and not values from $sender_name, $sender_email, etc... Is there a configuration problem I should know about here?