I have a selection list that allows users to choose multiple options. However, if someone chooses more than one option, the first option is actually represented twice in the resulting selections for some reason. Let me give you an example. In the following list:
One
Two
Three
Four
Say someone selects Two, Three, and Four and presses "submit".
If you iterate through the array that holds the selections, it looks like this:
[0] = TwoTwo
[1] = Three
[2] = Four
For some reason, it is concatenating the first selection to itself and saving that.
Any ideas? Is this an HTML thing, or might I be doing something?
Thanks....Kennedy ------
KJR
One
Two
Three
Four
Say someone selects Two, Three, and Four and presses "submit".
If you iterate through the array that holds the selections, it looks like this:
[0] = TwoTwo
[1] = Three
[2] = Four
For some reason, it is concatenating the first selection to itself and saving that.
Any ideas? Is this an HTML thing, or might I be doing something?
Thanks....Kennedy ------
KJR