Hi!
Checkboxes that arent checked usually dont send any data, not even themdselves.
so if $var_name_of_checkbox exists the box has been checked, so you could simply add all of them
unless you do something about the fact before the form is sent, of course.
example:
checkboxes chckbx_a, chckbx_b and chckbx_c are in a form, value is 1 for checked.
i check chckbx_a and chckbx_c
so in php if get
$POST['chckbx_a'] == true
$POST['chckbx_b'] == false
$_POST['chckbx_c'] == true
unless i set the value to '0' for chckbx_b with clientsided script.
in this case all 3 boxes exist, with a value of 1, 0 and 1 respectively.
greetings, jakob