> How would I get all the boxes check when "grouping" them by using the
> same name for all checkboxes in the name field?

there are a number of ways, try:

<form action="process.php" method="post">
<input type="checkbox" name="checkBoxGroup[]" value="first" />
<input type="checkbox" name="checkBoxGruop[]" value="second" />
</form>

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

Reply via email to