Please forgive the tongue-in-cheek title, but I've been trying for the last hour to get my contact form to work properly. It sends the email just fine but it leaves out all the relevant data (name, email, etc.)

I've modified a PHP contact form tutorial, but I don't know where I've gone wrong.

The HTML:

<form name="form1" method="post" action="send_contact.php">
<fieldset>
    <h3>Name</h3>
    <input name="name" type="text" id="name">

    <h3>Email (required)</h3>
    <input name="email" type="text" id="email">

    <h3>Phone (required)</h3>
    <input name="telephone" type="text" id="telephone">

    <h3>Desired appointment time/date</h3>
    <input name="time" type="text" id="time">

    <input type="submit" name="Submit" value="Submit">

</fieldset>
</form>

The PHP:

<?php
// customer name
$customer_name = "$name";
// customer email
$mail_from = "$email";
// customer telephone
$customer_telephone = "$telephone";
// desired appointment time
$appointment_time = "$time";

// subject
$subject = "Appointment for $customer_name";
// message
$message = "$customer_name would like to book an appointment for $appointment_time";
// header
$header = "from: $customer_name <$mail_from>";
// recipient
$to = 'my@emailaddress.com'; 

$send_contact = mail($to,$subject,$message,$header);

if($send_contact){
    echo "We've recived your contact information";
}
else {
    echo "ERROR";
}
?>
link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

You don't need quotes.

$customer_name = "$name";
$customer_name = $name;

You should really use post to grab the data.

$customer_name = $_POST['name'];
link|improve this answer
Okay! I changed all the variables to grab data using $_POST and now it works just like I want it to. Thanks :) – muppethead Sep 13 '11 at 2:54
feedback

you need to be looking in the super global $_POST for your variables. for example

$customer_name = $_POST['name'];
link|improve this answer
You were right. $_POST is what I needed. Thanks! – muppethead Sep 13 '11 at 2:55
feedback

if your posting the data you need to get it from the post: I would trim it also

$customer_name = trim( $_POST['name'] );
link|improve this answer
What does trim do? $_POST was just what I needed. Thanks! – muppethead Sep 13 '11 at 2:55
1  
trim removes the leading and training spaces if any. – Drewdin Sep 13 '11 at 3:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.