non ho usato isNumeric(), ho fatto il controllo sia che il valore inserito non sia vuoto e che il valore non sia uguale a 0.
Codice PHP:
if ($n==0 or $c==0 or $g==0 or $h==0 or $i==0 or $j==0 or...)
{
$_SESSION['form_error'] = 'Numeric field! Please insert a number.';
header("location: errore.php");
}
else ...