as an example let us declare a checkbox in the
page html -
Human:<input type="checkbox" name="Human" value="male"/>
now we need to use php isset function to know
whether or not checkbox checked by the follwing
way -
<?php
if (isset($_POST['Human']))
{
// do what next
}
?>
hope this helps.