Ciao,
Vorrei sapere qual'è o quali sono gli errori in questa pagina; Il codice é:
<html>
<head>
<title>Documento senza titolo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<?php
function somma(form) {
echo "Sto eseguendo la funzione";
form.Somma.value()=form.Add1.value() + form.Add2.value();
}
?>
</head>

<body>
<form name="form" onClick="somma">
Primo Addendo
<input type="text" name="Add1" value="0" maxlength="5">


Secondo Addendo
<input type="text" name="Add2" value="0" maxlength="5">


Totale
<input type="text" name="Somma" disabled value="0" maxlength="6">
<input type="submit" value="Somma">
</form>
</body>
</html>
Grazie, Ciaoooo