私は次のJQuery/Javascriptを持っています
<script>
var Quantity;
$("select").change(function() {
var str = "";
var price = <?php echo $row[price];?>;
$("select option:selected").each(function() {
str += $(this).text() + " ";
});
$(".plan_price").text("price : " + parseInt(str) * price + " baht");
Quantity = parseInt(str);
}).change();
</script>
これはphp/sql用です
if ($row[item_amount] - 1 == 0) {
$sql = "update item set active='2',item_amount=item_amount-1,buy_time=NOW() where id='$id'";
} else {
$sql = "update item set item_amount=item_amount-1,buy_time=NOW() where id='$id'";
}
Quantity をデータベースから減算する必要があるため、php の $row[item_amount] との間で JavaScript 変数 Quantity の値を減算/加算する方法があるかどうかを知りたいです。