sorry if this is simple, but ive tried looking at a few different sites and i have had no such luck.
? using the kirupa flash php tut,
http://www.kirupa.com/developer/actionscript/flash_php_email.htm
i am trying to add more input forms.
ive added them in flash and given then VAR state and zip, but i am unsure of how to have POST collect them in the php script. do i add them with the $message?
thanks,
sans_serif
<?php
/
$sendTo = "mail@mynamehere.com";
$subject = “flash mailer”;
$headers = “From: " . $_POST[“firstName”] .” “. $_POST[“lastname”] . “<” . $_POST[“email”] .”>
";
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= "Return-path: " . $_POST[“email”];
$message = $_POST[“message”];
mail($sendTo, $subject, $message, $headers);
?>