estoy empezando con PHP pero no puedo hacer que al seleccionar dos o mas opciones se agregue el valor sumado al total
el codigo:
<div class="panel">
<form action="test-2.php" method="post">
<h2>Selecciona las materias que llevas pasadas</h2>
<input type="checkbox" name="literatura">literatura<br>
<input type="checkbox" name="calculo">calculo<br>
<input type="checkbox" name="ingles">ingles<br>
<input type="checkbox" name="ciencias sociales">ciencias sociales<br>
<input type="checkbox" name="programacion">programacion<br>
<input type="checkbox" name="desarrollo web">desarrollo web<br>
<input type="checkbox" name="orientacion">orientacion<br>
<input type="checkbox" name="emprendedores">emprendedores<br>
<input type="checkbox" name="base de datos">base de datos<br>
<input type="checkbox" name="biologia">biologia<br><br>
<input type="submit" name="submit" value="clic">
</form>
</div><br>
<div class="panel">
<h3>Creditos</h3>
<?php
$total = 0;
if (isset($_POST['literatura'])) {
$total = $total + 2;
}
elseif(isset($_POST['calculo'])) {
$total = $total + 4;
}
echo $total;
?>
</div>