Es esto lo que necesitas??
Código PHP:
<html xmlns="http://www.w3.org/1999/xhtml">
<body onload="init()">
<?
if($_POST['btn_enviar']){
$consulta = "SELECT * FROM tabla WHERE ";
$primera = true;
foreach($_POST['grupo'] as $value)
{
if($primera)
$primera = false;
else
$consulta .= " OR ";
$consulta .= "id=".$value;
}
echo $consulta;
}
?>
<form action="" method="post">
<input name="grupo[]" value="1" type="checkbox" />Check1<br/>
<input name="grupo[]" value="2" type="checkbox" />Check2<br/>
<input name="grupo[]" value="3" type="checkbox" />Check3<br/>
<input name="grupo[]" value="4" type="checkbox" />Check4<br/>
<input type="submit" value="enviar" name="btn_enviar" />
</form>
</body>
</html>