hey guys
I have a problem which needs urgent attention
I have made a contact form in Flash using a PHP script I have the fields as follows:
Name
Email
location
URL
message
everything works fine however the “message” field is does not appear in the body of the recieved email
help me please I’m begging you…here is the PHP code used:
<?php
$sendTo = “dips@designreel.com”;
$subject = “guestbook entry from laurenelisemodel.com”;
$headers = "From: " . $_POST[“guestname”];
$headers .= “<” . $_POST[“guestemail”] . ">
";
$headers .= "Reply-To: " . $_POST[“guestemail”] . "
";
$headers .= "Return-Path: " . $_POST[“guestemail”];
$message = $_POST[“guestmessage”]. "r
";
$message = $_POST[“guestlocation”]. "r
";
$message .= $_POST[“guesturl”];
mail($sendTo, $subject, $message, $headers);
?>
Everything else works fine - please note that the var name for the message field is “guestmessage”
Please help me somebody
Dips