Es una multiplicación de la cantidad de articulo por su valor unitario, eso me funciona bien, lo que no me funciona es la suma total de todos los campos del resultado de la multiplicación para saber el total de la venta:
Este es el Codigo
Código HTML:
Ver original
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <SCRIPT> function multiplicar() { m1 = document.getElementById("multiplicando").value; m2 = document.getElementById("multiplicador").value; r = m1*m2; document.getElementById("resultado").value = r; m1 = document.getElementById("multiplicando2").value; m2 = document.getElementById("multiplicador2").value; r2 = m1*m2; document.getElementById("resultado2").value = r2; m1 = document.getElementById("multiplicando3").value; m2 = document.getElementById("multiplicador3").value; r3 = m1*m2; document.getElementById("resultado3").value = r3; m1 = document.getElementById("multiplicando4").value; m2 = document.getElementById("multiplicador4").value; r4 = m1*m2; document.getElementById("resultado4").value = r4; } function sumar() { t1 = document.getElementById("resultado").value; t2 = document.getElementById("resultado2").value; t3 = document.getElementById("resultado3").value; t4 = document.getElementById("resultado4").value; rt = t1+t2+t3+t4; document.getElementById("total").value = rt; } </SCRIPT> </head> <body> <table align="center" border="0"> <form id="multiplicar" action="reg01.php" method="post"> <tr align="center" valign="middle"> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> <td align="right"> <input type="text" name="total" id="total" size="20" /> </td> </tr> <tr> </tr> </form> </table> </body> </html>