Maybe you want to give the checkbox the same name with array.
<input type=checkbox name="c[]" value="a girl">
<input type=checkbox name="c[]" value="none">
<input type=checkbox name="c[]" value="a boy">
then you can check
<?php
echo '<pre>';
echo print_r($_POST['c']); // This will give you good example whats going on.
echo '</pre>';
foreach($_POST['c'] as $v){
if($v == 'a boy')
echo 'Its a boy!';
}
and you can get rid of 2 fields in your db and just check on field c on what it is. You might not even need an array if you just need 1. But what if they have a boy and a girl!?