hello, i am facing problem of colletcting multiple values of the <select multiple> tag in PHP. plz help me in this regard.
Moon
Code your html like this:
<select name="something[]" multiple="yes"> <option>..... </select>
and your scrept will read $something as an array with the multi values selected....