<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."') ");
Я пытаюсь вставить все записи в базе данных в одном queryw как я могу вставить все строки в базе данных по одному запросу ?
'вставить в (col1, col2 ...) значения (знач1, val2. ..), (val1, val2 ...) '. –
Есть ли какой-либо путь по циклу или массиву? –
цикл - не лучшая идея. SougataBose предложил правильный путь –