【发布时间】:2017-07-13 10:31:12
【问题描述】:
<tr class="targetfields">
<td><input type="text" class="form-control" name="order_id[]" value="<?php echo $row3['id']; ?>"/></td>
<td width="400"><textarea name="desc" class="form-control"><?php echo $item_description; ?></textarea></td>
<td><input id="quant" class="form-control common quantity" name="quant[]" type="text" value="<?php echo $quantity; ?>"/></td>
<td><input id="unit_price" class="form-control common price" name="unit_price[]" type="text" value="<?php echo $unit_price; ?>"/></td>
<td><input id="total" readonly class="form-control total" name="total[]" type="text" value=""/></td>
</tr>
<tr class="targetfields">
<td><input type="text" class="form-control" name="order_id[]" value="<?php echo $row3['id']; ?>"/></td>
<td width="400"><textarea name="desc[]" class="form-control"><?php echo $item_description; ?></textarea></td>
<td><input id="quant" class="form-control common quantity" name="quant[]" type="text" value="<?php echo $quantity; ?>"/></td>
<td><input id="unit_price" class="form-control common price" name="unit_price[]" type="text" value="<?php echo $unit_price; ?>"/></td>
<td><input id="total" readonly class="form-control total" name="total[]" type="text" value=""/></td>
</tr>
<tr class="targetfields">
<td><input type="text" class="form-control" name="order_id[]" value="<?php echo $row3['id']; ?>"/></td>
<td width="400"><textarea name="desc[]" class="form-control"><?php echo $item_description; ?></textarea></td>
<td><input id="quant" class="form-control common quantity" name="quant[]" type="text" value="<?php echo $quantity; ?>"/></td>
<td><input id="unit_price" class="form-control common price" name="unit_price[]" type="text" value="<?php echo $unit_price; ?>"/></td>
<td><input id="total" readonly class="form-control total" name="total[]" type="text" value=""/></td>
</tr>
<button id='btn' name='btn' class="btnn primary-btn" type='submit'>Submit</button>
我总共有 10 行这样的
PHP
if(isset($_POST['btn'])){
ob_start();
$order_id = $_POST["order_id"];
$desc = $_POST["desc"];
$quant = $_POST["quant"];
$unit_price = $_POST["unit_price"];
$total = $_POST["total"];
$query = mysqli_query($con,"insert into orders (id,description,quantity,unit_price,total) values('".$order_id."','".$desc."','".$quant."','".$unit_price."','".$total."') ");
我正在尝试在一个查询中插入数据库中的所有记录w如何通过一个查询插入数据库中的所有行?
【问题讨论】:
-
insert into <tablename> (col1, col2...) values (val1, val2...), (val1, val2...). -
循环或者数组有什么办法吗?
-
循环不是一个更好的主意。 SougataBose 提出了正确的方法