I have a multiple select box. When I submit, I don't get the values I get the numeric position.
ie
<SELECT NAME="ProductAuth[]" MULTIPLE size="3">
<option value='Cablematic'>Cablematic</option>
<option value='Miller'>Miller</option>
<option value='UtilityTool'>UtilityTool</option>
</select>
Returns
0,1,2 - depending on which one I select using
array_values()
How do I get the actual values instead of the numbers?