AS2 Flash Forms
AS2 Flash Forms
Out of context: Reply #3
- Started
- Last post
- 5 Responses
- CyBrain0
Ok, I've gotten somewhere with this tutorial.
http://www.kirupa.com/developer/…I'm tracing out my variables with Flash the way I want to, but not getting some of my headers in the email result.
Here's my php code section that I'm not sure is right.
$headers = "From: " . $_POST["f1"] ." ". $_POST["f2"] . "Phone: " . $_POST["f3"] ."\r\n" . "Email: " . $_POST["f4"] ."\r\n" . "Event date: " . $_POST["f5"] ."\r\n";
I'm getting f1, f2, and f3 in the subject line of the result email and f4 and f5 in the body of the result email.
What am I doing wrong?
- correction: My subject header is right, but my f1 -f3 is showing in the To field.CyBrain