The DB now reads with Array in front of recipients....
How do I get the value of the individual option in the following:
<select name="mySelect[]" multiple="multiple">
...
</select>
I tried (to no avail):
document.formName.mySelect[0].options[0].value
document.formName.mySelect[].options[0].value
document.formName.mySelect[0].options[].value
Any ideas??