Hi,
I was wondering if anyone can help out with this. Anything would be greatly appreciated. In an HTML form say you had something like this:
<FORM ACTION=test.php>
<SELECT NAME=blah SIZE=3 MULTIPLE>
<OPTION VALUE=0>blah0
<OPTION VALUE=1>blah1
<OPTION VALUE=2>blah2
<OPTION VALUE=3>blah3
</SELECT>
<INPUT TYPE=submit>
</FORM>
This form enables you to select multiple options in the form by holding the CTRL button. But in test.php only the last option you select is passed. So if I selected blah0 and blah2. Only 2 gets passed as $blah. I know in ASP it builds an array, but $blah[0] doesn't work.
-Kevin