Código PHP:
$strSQL="Update Tarjetas set taMontoDisponible = taMontoDisponible - ".$_GET["Monto"]." Where taNoTarjeta = '"
.$_GET["NoTarjeta"]."')";
$iquery=mysql_query($strSQL,$Link);
![Pensando](http://static.forosdelweb.com/fdwtheme/images/smilies/scratchchin.gif)
La variable $_GET["Monto"] es igual a: 6495.00 y el campo taMontoDisponible = 15000.
Pensé que la condición del where no se cumplía e hice un select a la tabla con el mismo Where y me trae el registro, entonces que estoy haciendo mal?
![Pensando](http://static.forosdelweb.com/fdwtheme/images/smilies/scratchchin.gif)