I have a dropdown list like this:
<select name=\"KK1299\" size=5 multiple>
<option value=\"team J 155.htm\" >team J 155.htm </option>
<option value=\"team J 170.htm\" >team J 170.htm </option>
<option value=\"team J 159.htm\" >team J 159.htm </option>
</select>
The name & the value are created dynamically (from value in certain directory).
Now say, if the user select \"team J 155.htm\" & \"team J 159.htm\". I want to make a function that stored the values that users have selected into an array. (In this case, it will be $result = array (\"team J 155.htm\", \"team J 155.htm\");
how can i do this?
thanks a lot