Sure this is simple, but this is the first time I’ve ever done anything PHP ish…so please forgive the question if it’s stupid.
All I want to do is add a couple of fields - did the Tuorial, and it works fine, but I want to add a phone and stylenumber field…
So I did this:
<?php
$sendTo = “emailaddress.net”;
$subject = “Customer Response Form”;
$message = "$phone
";
$message = "$stylenumber
";
$headers = “From: " . $_POST[“name”];
$headers .= “<” . $_POST[“email”] .”>
";
$headers .= "Reply-To: " . $_POST[“email”];
$message = $_POST[“message”];
$phone = $_POST[“phone”];
mail($sendTo, $subject, $message, $stylenumber, $phone, $headers);
?>
And in the movie clip I added two input text fields, and in the variable field put phone and stylenumber respectively.
Everything else comes through but my new text fields!!! Why?!
I’m tearing my hair out and would love some help.
Thanx.