同じを使用して、foreach ループを介して複数のフィールド値を送信するにはどうすればよいID
ですか?
この HTML コードの何が問題になっていますか?
<input type="text" size="3" name="new_quantity[<?php echo $product_id; ?>]" value="<?php echo $product_quantity; ?>" />
<input type="text" name="totalcost[<?php echo $product_id; ?>]" value="<?php $total_cost; ?>" />
今PHP
コード
foreach($_REQUEST['new_quantity'] as $key => $quantity) {
foreach($_REQUEST['totalcost'] as $key => $total) {
$sql=mysql_query("UPDATE `categories`.`carts` SET `product_quantity` = '$quantity', `product_totalcost` = '$total' WHERE `carts`.`product_id` ='$key' AND cart_session='$sessionID'");
}
}