Te propongo otra forma de poder hacerlo. En tu form lo puedes hacer tal que así:
Código PHP:
echo '<form action="" method="post" enctype="multipart/form-data">';
echo '<table>';
for($i=1;$<=3;$i++){
echo '<tr>';
echo '<td>{Left'.$i.'}</td>';
echo '<td><input type="checkbox" value="0" name="check'.$1.'" ></td>';
echo '</tr>';
}
echo '<tr>';
echo '<td colspan="2"><input type="submit" name="submitbutton" value="SEND" id="submitbutton"></td>';
echo '</tr>';
echo '</table>';
echo '</form>';
Y en la página que lo tengas que recoger, tan solo necesitarías este código:
Código PHP:
for($i=1;$<=3;$i++){
if(isset($_POST['check'.$i])){
/*lo que necesites hacer*/
}//fin del if
}//fin del for