what have you got sofar?
In short, what I'd do:
When you create the form, for the checkboxes, use one name:
<input type="checkbox" name="person[<?php echo $id?>]">
Then you can just loop through the submitted array:
in the recieving page:
$person = $_POST['person'];
if(is_array($person)
{
foreach($person as $key=>$value)
{
echo $key." = ".$value;
{
}
that should get you started, i hope
Jelle.