give them an array as name.
i.e.: name="check[1]"
name="check[2]"
...
In the script executed by the submit button you can use eighter each element of the array or
$checkboxes = implode (" ", $check);
to have all answers in one variable delimited by a space.
Hope this helps