How to choose more than one option from a select box

后端 未结 6 699
旧巷少年郎
旧巷少年郎 2021-01-22 11:47

i want to know how can we select more than one option from a select box like given below:







your PHP code that is the action of the form can have the data like this.

$mySelectValues = $_REQUEST['some-select'];
// mySelectValues is an array now
foreach ($mySelectValues as $selected) {
    echo $selected;
}

when you are viewing your HTML page, you can select multiple options by holding the Ctrl key and then selecting other options.

提交回复
热议问题