PHP: Request the values of a HTML form drop down list

前端 未结 2 1874
既然无缘
既然无缘 2021-01-07 13:37

I have a HTML form which is using a simple PHP mail() script to send its contents to an email address. I have just implemented a drop down list:



        
2条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-07 14:24

    Use this for your html form:

    
    

    And use this on your php page that your form submits to:

    $event = $_POST['event']
    

    or

    $event = $_GET['event']
    

提交回复
热议问题