How to send the selected value of a drop down menu to an email?

后端 未结 1 1153
耶瑟儿~
耶瑟儿~ 2021-01-29 05:45

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

相关标签:
1条回答
  • 2021-01-29 06:30

    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

    0 讨论(0)
提交回复
热议问题