Hi,
I have the following select list:
<select name="numskull" size="4" multiple>
<option value="1">Boots</option>
<option value="2">Hat</option>
<option value="3">Coat</option>
<option value="4">Umbrella</option>
<option value="5">Mac</option>
</select>
In my form, I select several of the options and submit it to a php script;
In the script if I do print $numskull; - I get the last value that I selected in the list; Should PHP be able to access the $numskull variable as an array? (I've tried doing a gettype() on it, and it returns string);
I have RTFM'd and have found little on this. Any advice gratefully received.
Phil