From: "Josh Close" <[EMAIL PROTECTED]> > Very simple question..... > > When making multiple checkboxes, you put the name the same for a few > to group them together > > <form action="process.php" method="post"> > <input type="checkbox" name="checkBoxGroup" value="first" /> > <input type="checkbox" name="checkBoxGruop" value="second" /> > </form> > > So they are grouped.... but then submitting them I only get the last > value check. > > <? print_r($_POST); ?> > > How would I get all the boxes check when "grouping" them by using the > same name for all checkboxes in the name field?
Make them an array: <input type="checkbox" name="checkBoxGroup[]" value="first" /> <input type="checkbox" name="checkBoxGruop[]" value="second" /> Note the "[]" on the name. ---John Holmes... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php