PHP Web Form List Box Select Multiple Options

[Oct 18, 2010]


We can write the following...

<select name="choices[]" multiple="multiple">
  <option value="choice1">choice1</option>
  <option value="choice2">choice1</option>
  <option value="choice3">choice1</option>
</select>

Then use the following code after submit...

if ($_REQUEST['choices'] != '') {
  foreach ($_REQUEST['choices'] as $choice) {
    echo $choice . '<br />';
  }
}

http://stackoverflow.com/questions/2407284/how-to-get-multiple-selected-values-o...


Home
Web Log
Contact Me
© 2008-2012 Khomsan Phongphisansakun
May 19th, 2012