Algo así:
Tenemos el html:
<form action="pagina2.php" method="post">
Ingrese primer valor:
<input type="text" name="valor1"> Ingrese segundo valor:
<input type="text" name="valor2"> <input type="checkbox" name="check1">sumar
<input type="checkbox" name="check2">restar
<input type="submit" name="operar">
haces el php y lo recibes sin ningún problema:
<?php
if (isset($_REQUEST['check1'])) {
$suma=$_REQUEST['valor1'] + $_REQUEST['valor2'];
echo "La suma es:".$suma."<br>";
}
if (isset($_REQUEST['check2'])) {
$resta=$_REQUEST['valor1'] - $_REQUEST['valor2'];
echo "La resta es:".$resta;
}
?>
Saludos!
Para más dudas, aquí estamos.