I can see it has 4 field to send on the web form. Here I give you an example for this:
Let's say that you want to add a new field called "city"
Add your variable for city on on your actionscript on your flash web form:
At the clear button:
on (release) {
name = "";
city ="";
subject="";
message="";
email="";
}
At the send button:
on (release) {
if (name eq "" or subject eq "" or city eq "" or message eq "" or email eq "") {
stop ();
} else {
loadVariablesNum ("form.php", 0, "POST");
gotoAndStop (2);
}
}
// form.php
<?PHP
$to = "you@yourdomain.com";
$msg = "$name\n\n";
$msg .= "I'm from : $city\n\n$message\n\n";
mail($to, $subject, $msg, "From: My web site\nReply-To: $email\n");
?>
The $city variable will be put into $msg along with the message ($message).
Hope it helps! 🙂
salt and light of the world!