Código HTML:
<form name="prueba method="post" action="">
<input type="checkbox" name="tester">Probando
<input type="submit" value="Probar">
</form>
Código PHP:
if($_POST)
{
$test = $_POST['tester'];
if($test == TRUE)
{
$sw = 1;
}
else
{
$sw = 0;
}
echo $sw;
}
en algun lado aparecerá un 0 o un 1