Robert Sossomon wrote:
You need to do: <input type=checkbox name="checkBoxGroup1" value="first"/> <input type=checkbox name="checkBoxGroup2" value="second"/>

Keeping the name the same makes them a RADIO button and you will only
get the last one.

This is not true. The only thing that will make these a radio button is setting the 'type' to 'radio'.


The answers put out to this yesterday were correct. Using square brackets ( [] ) after the name of the checkbox element will send them as an array (if any are checked).

--
John C. Nichel
ÜberGeek
KegWorks.com
716.856.9675
[EMAIL PROTECTED]

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to