sumar los valores que tengan los text de mis columnas por fila

quiero sumar los valores de mis Form::text por decir tengo 4 columnas con notas de estudiantes y las quiero sumar por filas cada ves q ingrese el usuario un numero de calificacion.
ej SIMILAR A ESTO PERO CON VARIAS FILAS YA Q PUEDE VARIAR LA CANTIDAD DE ESTUDIANTES:
<style type="text/css">
<!--
body {
font-family: "Trebuchet MS", Tahoma, Arial;
font-size: 12px;
color: #333333;
}
h2 {
font-size: 16px;
color: #CC0000;
}
input, select {
font-family: "Trebuchet MS", Tahoma, Arial;
font-size: 11px;
color: #666666;
}
-->
</style>

<script>
function sumar() {
var n1 = parseInt(document.insertar.numero1.value);
var n2 = parseInt(document.insertar.numero2.value);
var n3 = parseInt(document.insertar.numero3.value);
document.insertar.TOTAL.value=n1+n2+n3;
}
</script>

<h2>Insertar datos en MySQL</h2>
<form id="insertar" name="insertar" method="post" action="">
<input type="text" name="numero1" size="20" onChange="sumar()">
<input type="text" name="numero2" size="20" onChange="sumar()">
<input type="text" name="numero3" size="20" onChange="sumar()">
<input type="text" name="TOTAL" id="TOTAL" size="20">
</p>
<input type="submit" name="Submit" value="Insertar Registro" />
<input type="hidden" name="action" value="add" />
</form>

Sign In or Register to comment.