On Mon, 2 Aug 2004 15:21:31 -0500, Josh Close <[EMAIL PROTECTED]> wrote:
> 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?

I've used
<form action="process.php" method="post">
   <input type="checkbox" name="checkBoxGroup[]" value="first" />
   <input type="checkbox" name="checkBoxGruop[]" value="second" />
</form>
in a similar situation.
You can then manipulate the $_POST['checkBoxGroup'] array just like
any other PHP array.

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

Reply via email to