Well it works partially in that the form comes through, but the form is always blank. What have I done wrong.
Extract from HTML
HTML Code:
<ul class="opendays">
<li>
<p><strong>Change of Peronal Details</strong></p>
</li>
</ul>
<form action="send_contact.php" method="post">
<ul class="opendays">
<li> <p>Your Name <required>*</required></p><p><input type="text"></p></li>
<li><p>Your Email <required>*</required></p><p><input type="text"></p></li>
<li><p>With Effect From <required>*</required></p><p><input type="text"></p></li>
<li><p>Telephone No </p><p><input type="text"></p></li>
<li><p>Mobile Number </p><p><input type="text"></p></li>
<li><p>Adress Line 1 </p><p><input type="text"></p></li>
<li><p>Adress Line 2 </p><p><input type="text"></p></li>
<li><p>Adress Line 3 </p><p><input type="text"></p></li>
<li><p>Adress Line 4 </p><p><input type="text"></p></li>
<li><p>Adress Line 5 </p><p><input type="text"></p></li>
<li><p> </p><p><button type="submit" class="button">Submit</button></p></li>
</ul>
<br> <required> * (indicates that the information is required)
</form>
Extract from PHP
PHP Code:
<?php
// Contact subject
$subject ="$Contact Form";
// Details
$message="$detail";
// Mail of sender
$mail_from="$customer_mail";
// From
$header="from: $detail <$mail_from>";
// Enter your email address
$to ='antonylambert@c5d.co.uk';
$send_contact=mail($to,$subject,$message,$header);
// Check, if message sent to your email
// display message "We've recived your information"
if($send_contact){
echo "Thanks for sending this change of details. I shall update our records right away.";
}
else {
echo "ERROR";
}
?>
Please answer in words of one syllable please
Antony
Bookmarks