But the point in having checkboxes instead of radio buttons is for multiple choices to be selected, right?
<INPUT TYPE="checkbox" NAME="q6" VALUE="OFF"> blue <br>
<INPUT TYPE="checkbox" NAME="q6" VALUE="OFF"> red <br>
<INPUT TYPE="checkbox" NAME="q6" VALUE="OFF"> black<br>
<INPUT TYPE="checkbox" NAME="q6" VALUE="OFF"> white <br>
<INPUT TYPE="checkbox" NAME="q6" VALUE="Off"> yellow<br>
You could use an array, or just give each a more unique variable name, q6r for red, etc., etc. You've got lots to track either way. You'll have to change the names somehow if you want more than one color selectable, otherwise you'll only be able to set one value.....
dalecosp