Hi Guys
http://www.kirupa.com/developer/actionscript/flash_php_email.htm
I like this Flash/PHP form found on kirupa developers page, but the problem is i wanted to add more Input Boxes ( Form Fields ) e.g. Telephone, Age, Gender etc…
After i created the input text fields and assigned a name to my new text fields ( in flash ) i don’t know what to add or modify in the php form.
Please help.
Thank you!
borrob
2
this is the original code:
$headers = "From: " . $_POST["name"];
$headers .= "<" . $_POST["email"] . ">
";
$headers .= "Reply-To: " . $_POST["email"] . "
";
$headers .= "Return-Path: " . $_POST["email"];
$message = $_POST["message"];
now you can add the extra info for example by doing:
$message = " personal info:
name: " . $_POST["name"] . "
. telephone: " . $_POST["telephone"] . "
";
$message .= $_POST["message"];
$headers = "From: " . $_POST["name"];
$headers .= "<" . $_POST["email"] . ">
";
$headers .= "Reply-To: " . $_POST["email"] . "
";
$headers .= "Return-Path: " . $_POST["email"];
which should put the personal info above the message in the email
THANK YOU SO MUCH!!! :bounce: