Por favor ante pone este script en tu codigo, ejecutalo y mostrame tus resultados.
Código PHP:
<?php
$input = $_POST['check'];
echo "<pre>";
print_r($input);
echo "</pre>";
//despues
for( $i = 0; $i<count($input); $i++)
{
echo $input[$i]."<br>";
}
?>