Código Javascript:
Ver original
<script type="text/javascript"> var total = 0, maxi = 32; function sumar(valor) { total += valor; document.unc.total.value=total; } function restar(valor) { total-= valor; document.unc.total.value=total; } </script>
eh colocado un if realizando la validacion al final pero solo suma y no resta luego
Código HTML:
Ver original
<form method="post" action="imprimir.php" name="unc" id="unc";>
Código PHP:
Ver original
if($estatus57 == 'A'){ } else { echo "<tr>"; echo "<td>".$fila97['codmateria']."</td>"; echo "<td>".$fila97['uc']."<input type='checkbox' name='uc' onClick='if (this.checked) sumar(15); else restar(15)' value='checkbox';\>"."</td>"; echo "<td>".$fila97['semestre']."</td>"; echo "</tr>"; } if($estatus48 == 'A'){ } else { echo "<tr>"; echo "<td>".$fila88['codmateria']."</td>"; echo "<td>".$fila88['uc']."<input type='checkbox' name='uc' onClick='if (this.checked) sumar(15); else restar(15)' value='checkbox';\>"."</td>"; echo "<td>".$fila88['semestre']."</td>"; echo "</tr>"; } if($estatus42 == 'A'){ } else { echo "<tr>"; echo "<td>".$fila82['codmateria']."</td>"; echo "<td>".$fila82['uc']."<input type='checkbox' name='uc' onClick='if (this.checked) sumar(3); else restar(3)' value='checkbox';\>"."</td>"; echo "<td>".$fila82['semestre']."</td>"; echo "</tr>";
Soy nuevo en programacion asi que el codigo esta algo feo tengo que aprender a minimizar se acepta cualquier opinion critica que me ayude a mejorar y solucionar este problema