As yes. A similar question has been answered. a.k.a
PHP Multiple Checkbox Array
<form method='post' id='userform' action='thisform.php'> <tr>
<td>Trouble Type</td>
<td>
<input type='checkbox' name='checkboxvar[]' value='Option One'>1<br>
<input type='checkbox' name='checkboxvar[]' value='Option Two'>2<br>
<input type='checkbox' name='checkboxvar[]' value='Option Three'>3
</td> </tr> </table> <input type='submit' class='buttons'> </form>
You pass the form name as an array and then you can access all checked boxes using the var itself which would then be an array.
<?php if (isset($_POST['checkboxvar'])) {
print_r($_POST['checkboxvar']); } ?>
Also, what @CBroe has posted. Please read the documentation before diving in something. Good luck!