I have an question that send the selected value of a drop down menu to an email in php. I already send the text values to a email. But I did not know how to send the drop down
Just add a new variable:
$value_from_dropdown = $_POST['your_select_name'];
Then you can use that variable in your script like you do for any other variable