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
You could do like this too. It worked out for me.
Last 1 Week Last 2 Week Last 3 Week Last 4 Week Last 5 Week Last 6 Week
Then take the multiple selection from following PHP code below. It print the selected multiple values accordingly.
$shift=$_POST['selectDuration']; print_r($shift);