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
foreach ($_POST["select2"] as $selectedOption) { echo $selectedOption."\n"; }