See,, once you submit your multiple drop down menu.the values will be passing separated with ",".
eg:
<select name="statusselect" size="5" multiple>
<option value="one">one</option>
<option value="two">one</option>
<option value="three">one</option>
</select>
the $statusselect variable will be holding a value "one,two". if i select one and two.
You can separate this value using explode() function.
$values=explode(",",$statusselect);
// this returns an array of strings containing the elements.
then you can simply play around this array
($values).
Hope this may help you to sort out your problem.
------------------
SR -
shiju.dreamcenter.net
"The fear of the LORD is the beginning of knowledge..."