Hi,
I have been searching all over for a way to get the data from a combo box, or the label, or anything.
I am using the ‘Flash Based Email Form using PHP’ located on this website. So, from that, how would I add a little combo box to that form, with about 5 options. Then have the email.php send off whatever was the selection in that combo box be sent in the email.
I tried adding the labels and data fields to the combo box then naming it something like cbName. Then reference the variable in the php like
$leintype = $_POST["cbName"]
then later on for $message I put:
$message = "
Name: $name
Type: $leintype ";
and so on. But that just did not seem to work.
Any help would be greatly appreciated.