I get a Parse error: syntax error when I echo 2 checkbox rows. I think there is something with the 2nd tag because the first checkbox: FILM DRAAI DAGEN. echo's right.
 <tr>
    <td>
        <?php echo 'Film draai dagen: ';?>
    </td>
    <td>
<?php
if(!empty($_POST['draaidag']))
{
    foreach($_POST['draaidag']as$check)
    {
        echo " ".$check;
        $draaidag = " ".$check;
    }
?>
    </td>
</tr>
<tr>
    <td>
        <?php echo 'Film tijd dagen: ';?>
    </td>
    <td>
<?php
if(!empty($_POST['tijddag']))
{
    foreach($_POST['tijddag']as$check)
    {
        echo " ".$check;
        $tijddag = " ".$check;
    }
?>
    </td>
</tr>
 
     
    