All right I'm new to this, but thought I had this figured out last night, but now am stuck.<br><br>I have a form. I have multiple checkboxes and I am going to make users check 3 of them. I want to eventually put these three valeus into three different variables. So i figured i'd store them as an array and then take the values from the array.<br><br>I did this fine yesteday with one of those option value boxes. Some sample coder here: <br> <SELECT NAME="myarray[]" MULTIPLE SIZE="5"><br> <OPTION VALUE="test">test</OPTION><br> <OPTION VALUE="test2">test2</OPTION><br> <OPTION VALUE="test3">test3</OPTION><br> etc...<br><br>The values checked were stored in the array myarray[], and I could subsequently count the values to make sure 3 were checked and then pull out the values one by one.<br><br>However, I'm having trouble doing this with a checkbox. Here's my code:<br> <input type="checkbox" name="myarray[]" value="test"><br> <input type="checkbox" name="myarray[]" value="test2"><br> <input type="checkbox" name="myarray[]" value="test3"><br> <input type="checkbox" name="myarray[]" value="test4"><br><br>It seems to only be storing one of the values checked into the array. Any help with this would be appreciated.<br><br>Thanks