Dear All,
I am a beginning of PHP. I wonder how can I get the user selected option(s) in a multiple select tag? e.g.
<SELECT name=habit size=10 multiple>
<OPTION value=0>Reading</OPTION>
<OPTION value=1>Travelling</OPTION>
<OPTION value=2>Singing</OPTION>
...
...
</SELECT>
If I simply use $habit in the submited page, it will only show the last option user selected. How can I capture ALL the user selected options?