Click to See Complete Forum and Search --> : Making a drop down into a multiselect


livewire1974
12-11-2008, 09:32 AM
Hi,
Is it possible to make a drop down menu item into a multiselect?

Can somebody show me an example if it is possible?


thanks

Fang
12-11-2008, 09:39 AM
<select name="fruit" multiple (http://www.w3.org/TR/html401/interact/forms.html#adef-multiple)>
<option value="a">apple</option>
<option value="b">banana</option>
<option value="c">cranberry</option>
</select>

livewire1974
12-11-2008, 10:48 AM
cool, thanks, does anybody know how I get the values selected when posted?

Fang
12-11-2008, 11:10 AM
http://www.phpf1.com/tutorial/php-form-array.html