I have updated the sendmail.php form below, but now it doesn't send me anything back.
In the mail function when I take out $other, $comments it will work, but will only report $customerrating. How can I get the $other and $comments to report?
<?php
$email = $POST['email'] ;
$customerrating = $POST['customerrating'] ;
$other = $POST['other'];
$comments =$POST['comments'];
mail( "webmaster3@charter.net", "Feedback Form Results",
"$customerrating, $other, $comments, "From: $email" );
header( "Location: http://qacce101/webchatasp/thankyou.html" );
?>