从 while 循环输入数组,为每个输入传递 $_POST

Inputs array from while loop, passing $_POST for each input

<form role="form" autocomplete="off" action="includes/functions/fisa-init.php" method="POST">
<?php
   connectDB();
   $query = mysqli_query($mysqli, "SELECT * FROM `optionale`") or die(mysqli_error($mysqli));
   while($row = mysqli_fetch_array($query))
   { 
?>
   <span><?php echo $row['denumire']; ?></span>
   <input type="text" name="nrBucati[]">
   <input type="hidden" value="<?php echo $row['cod']; ?>" name="codProdus[]">
<?php } ?>
</form>

在 while 循环中,我得到了 input name="nrBucati[]"input name="codProdus[]" 的数组。

我有疑问:

$stmt3 = $mysqli->prepare("
            UPDATE 
            `stocuri` 
            SET 
            `cantitate` = `cantitate` - ?
            WHERE `cod` = ?
            ");


    $stmt3->bind_param("is", $bucata, $cod);

    // set parameters and execute
    foreach( $_POST['nrBucati'] as $bucata ) {
    return $bucata; 
    }

    foreach( $_POST['codProdus'] as $cod ) {
    return $cod;
    }

    if (!$stmt3->execute()) 
        {
            echo "Execuția a întâmpinat o eroare: (" . $stmt3->errno . ") " . $stmt3->error;
        }
    $stmt3->close();

我无法通过 $_POST 获取所有输入数组值。详见:

如何从 HTML 到 POST 的数组 nrBucati[]codProdus[] 中获取每个输入值?

像这样正确地 assign/pair 设置你的两个参数,然后从循环内执行你的查询调用。

foreach( $_POST['nrBucati'] as $id => $bucata ) {
    $cod = $_POST['codProdus'][$id];

    if (!$stmt3->execute()) 
        {
            echo "Execuția a întâmpinat o eroare: (" . $stmt3->errno . ") " . $stmt3->error;
        }
}

运行 a foreach 并在 foreach 循环中准备数据:

// Get posted data and execute
foreach( $_POST['nrBucati'] as $key=>$bucata ) {
    $cod = $_POST['codProdus'][$key]; // For object change this to $_POST['codProdus']->$key;

    $stmt3= $mysqli->prepare("UPDATE `stocuri` SET `cantitate` = `cantitate` - ? 
                              WHERE `cod` = ? ");
    $stmt3->bind_param("is", $bucata, $cod);

    if (!$stmt3->execute()){

        echo "Execuția a întâmpinat o eroare: (" . $stmt3->errno . ") " . $stmt3->error;
    }

    $stmt3->close();

}