Here is my form -
http://www.f-designs.net/form/order.html
-view the source to see the html-
I tried writing the php script though didn't get exactly what I wanted...
<?php
if(isset($POST['submit'])){
$name=$POST['name'];
$email=$POST['email'];
$d1=$POST['d1'];
$number=$POST['number'];
$comments= "Name: ".$name."\n\rEmail: ".$email."\n\rTemplate Category: ".$d1."\n\rTemplate Number: ".$number. "\n\rAdditional Comments: ".$POST['message'];
$toaddress = "designers@f-designs.net";
$subject = "Factored Designs";
$mailheaders .= "BCC: blah@blah.net\r\n";
$mailheaders .= "From: $name <$EMAIL>\r\n";
$mailheaders .= "Reply-To: $email\r\n";
mail($toaddress, $subject, $comments, $mailheaders);
header("Location: http://www.f-designs.net/form/thankyou.html");
unset($_POST['submit']);
** When the results get e-mailed to it displays 'Name', 'Email', 'Dropdown Selection', and 'Message'
**I can't figure out how I make it display the 'Template Category' and 'Template Number' results as well.
could someone please help me? Thank you