I have a flash form that works just fine. I now added a combobox with these settings:
editable: false
Labels: employment, audio, work
Data: choose a value
Row Count: 8
Change Handler:
my code for the submit button is:
on (release) {
_root.form.loadVariables(“contacts.php”, “POST”);
}
my php code:
$sendTo = "webmaster@ihearditmedia.com";
$subject = “Contact Flash Form”;
$headers = “From: $name<$email>
Reply-To:$email”;
$message = “1.Name:$name
4.Email:$email
5.Contact Address:$address
6.Comments:$comments”;
mail($sendTo, $subject, $message, $headers, $category);
?>
the form works fine but the combobox options don’t get emailed - nothing emails for the combobox.
Do I need any actionscript on the combobox ? and what do I add to the php file ?