If the checkboxes have the same name then you will have to set it up as an array. If they have seperate names then you can take what Merve gave you and use it three times.
$a = $_POST['a'];
$b = $_POST['b'];
$c= $_POST['c'];
if(empty($a) || empty($b) || empty($c))
{
echo "I'm sorry, you did not fill out all the required information";
if(empty('$a'))
{
echo "A is required!";
}
if(empty('$b'))
{
echo "B is required!";
}
if(empty('$c'))
{
echo "C is required!";
}
include("page.php");
exit();
}
else
{
echo "<font color=red><b>You clicked all the checkboxes. THANK YOU!</b></font>";
}