algo que montamos hace ya algún tiempo? a que te refieres?
Código PHP:
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" xml:lang="en" lang="en">
<title>Presupuesto</title>
<link href
="CSS2.css" rel
="stylesheet" type
="text/css" /> <head>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
<script language="javascript" type="text/javascript">
function funcion (id, val, control, net, fin) {
var precio = document.getElementById(id+'_hidden').value;
var total = (parseFloat(precio * val)).toFixed(2);
control.innerHTML=total;
for (i=0; i<500; i++){
var neto= total;
net.innerHTML=neto;
var final=(neto * 1.21).toFixed(2);
final;
fin.innerHTML=final;
}
}
function seleccionar_todo(){
for (i=0;i<document.form.elements.length;i++)
if(document.form.elements[i].type == "checkbox")
document.form.elements[i].checked=1
}
function ControlNum(){
var tecla=window.event.keyCode;
if (tecla < 48 || tecla > 57){
window.event.returnValue=false;
}
else
{
window.event.returnValue=true;
}
}
function paso(id,nombre){
var precio = document.getElementById(id+'_hidden').value;
var nombre=document.getElementById("");
if (document.getElementById("checkbox").checked==true) {
window.location.href="Presupuesto.php?nombre=" + precio + "&nombre=" + nombre
}
}
</script>
</head>
<body>
<div align="center">
<form action="Presupuesto.php" method="post" name="form" id="form">
<table align='right' border='1'><tr><td>Neto: <label id='neto' name='etiqet'/></td></tr><tr><td>IVA: 21%</td></tr><tr><td>FINAL:<label id='final' name='etiqeta'/></td></tr></table><table class='table' aling='center' border=1><tr>
<td><div class='letra1'><b>PRODUCTO</b></td><td><div class='letra2'><b>PRECIO</b></td><td><div class='letra1'><b>CANTIDAD</b></td><td><div class='letra2'><b>PRECIO_TOTAL</b></td><td><div class='letra1'><b><input type='checkbox' name='todo' onClick='seleccionar_todo()' id='todo'></b></td></tr>
<tr class='th'><td class='td'>Cable Baffle 2 x 0,50</td><td>$0.62<input type='hidden' value='0.62' id='precio_0_hidden' name='precio_0_hidden' /></td><td><input type='text' value='' id='precio_0' name='precio_0' onKeyUp='funcion(this.id, this.value,total569,neto,final)' onkeypress='ControlNum()' class='input'/></td><td><label id='total569' name='etiq'/></td><td><input type='checkbox' name='checkbox[]' id='ok' onClick='paso(id,nombre)'/></td></tr><tr class='th'><td class='td'>Cable Baffle 2 x 0,75</td><td>$0.92<input type='hidden' value='0.92' id='precio_1_hidden' name='precio_1_hidden' /></td><td><input type='text' value='' id='precio_1' name='precio_1' onKeyUp='funcion(this.id, this.value,total570,neto,final)' onkeypress='ControlNum()' class='input'/></td><td><label id='total570' name='etiq'/></td><td><input type='checkbox' name='checkbox[]' id='ok' onClick='paso(id,nombre)'/></td></tr><tr class='th'><td class='td'>Cable Baffle 2 x 1</td><td>$1.18<input type='hidden' value='1.18' id='precio_2_hidden' name='precio_2_hidden' /></td><td><input type='text' value='' id='precio_2' name='precio_2' onKeyUp='funcion(this.id, this.value,total571,neto,final)' onkeypress='ControlNum()' class='input'/></td><td><label id='total571' name='etiq'/></td><td><input type='checkbox' name='checkbox[]' id='ok' onClick='paso(id,nombre)'/></td></tr></table><br>
<div align="center">
<input type="button" name="consulta" id="consulta" value="Nueva Consulta" onclick = "this.form.action = 'pre.php'; this.form.submit()" />
<input type="submit" name="presupuesto" id="presupuesto" value="Agregar a Presupuesto" />
<input type="reset" name="cancel" id="cancel" value="Cancelar"/>
</div>
</form>
</div>
</body>
</html>