How to get multiple selected values of select box in php?

后端 未结 10 2200
既然无缘
既然无缘 2020-11-22 04:18

I have a html form which has a select list box from which you can select multiple values because its multiple property is set to multiple. Consider form method is \'GET\'. T

10条回答
  •  迷失自我
    2020-11-22 04:59

    If you want PHP to treat $_GET['select2'] as an array of options just add square brackets to the name of the select element like this:

    提交评论

提交回复
热议问题