在更新时添加新行

时间:2015-09-01 16:20:27

标签: php mysql

我有一个动态行的表单 我可以添加行并将它们全部保存到数据库中 我也可以编辑表单并将值更新到数据库 问题是,我无法在更新时添加新行。

我的表是:

TABLE `tbl_orderdetail` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) DEFAULT NULL,
`product_name` varchar(255) DEFAULT NULL,
`quantity` varchar(255) DEFAULT NULL,
`price` varchar(255) DEFAULT NULL,
`discount` int(11) DEFAULT NULL,
`amount` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)

这是创建发票的页面,我可以根据需要添加任意数量的行 注意输入类型="隐藏"名称=" ORDER_ID" ...

$id = mysql_insert_id();
for($i = 0 ;$i < count($_POST['product_name']);$i++)
{
    mysql_query("INSERT INTO tbl_orderdetail 
                SET order_id        = '{$id}', 
                    product_name    = '{$_POST['product_name'][$i]}', 
                    quantity        = '{$_POST['quantity'][$i]}', 
                    price           = '{$_POST['price'][$i]}', 
                    discount        = '{$_POST['discount'][$i]}', 
                    amount          = '{$_POST['amount'][$i]}'
                ");
}

<tbody id="orderdetail" class="detail">
    <tr>
    <input type="hidden" name="order_id" >
    <td width="2%" class="no">1</td>
    <td width="10%"><input type="text" class="form-control quantity" name="quantity[]"></td>
    <td width="60%"><input type="text" class="form-control product_name" name="product_name[]"></td>
    <td width="8%"><input type="text" class="form-control price" name="price[]"></td>
    <td width="4%"><input type="text" class="form-control discount" name="discount[]"></td>
    <td width="10%"><input type="text" class="form-control amount" name="amount[]"></td>
    <td width="6%"><a href="#" class="remove">Excluir</td>
    </tr>
</tbody>

这是编辑页面。 的通知 我相信这应该是&#34; order_id&#34;,但我需要它是&#34; id&#34;因为更新。

<form   method="post" action="">    
  <div class="box-body">
    <table class="table table-bordered table-hover">
        <?php
          $sql = "SELECT * FROM tbl_orderdetail WHERE order_id=$id";
          $result = mysql_query($sql);
          $count=mysql_num_rows($result);
        ?>

    <thead>
        <th>No</th>
        <th>Qtde</th>
        <th>Descrição</th>
        <th>Unitário</th>
        <th>Desc.(%)</th>
        <th>Valor</th>
        <th><input type="button" value="+" id="add" class="btn btn-primary"></th>
    </thead>

    <tbody id="orderdetail" class="detail">

            <?php
               while ($rows = mysql_fetch_array($result)){
            ?>

    <tr>
    <input type="hidden" name="id[]" value="<?php echo $rows['id']; ?>" >
    <td width="2%" class="no">1</td>
    <td width="10%"><input type="text" id="quantity" class="form-control quantity" name="quantity[]" value="<?php echo $rows['quantity']; ?>"></td>
    <td width="60%"><input type="text" id="product_name" class="form-control product_name" name="product_name[]" value="<?php echo $rows['product_name']; ?>"></td>
    <td width="8%"><input type="text" id="price" class="form-control price" name="price[]" value="<?php echo $rows['price']; ?>"></td>
    <td width="4%"><input type="text" id="discount" class="form-control discount" name="discount[]" value="<?php echo $rows['discount']; ?>"></td>
    <td width="10%"><input type="text" id="amount" class="form-control amount" name="amount[]" value="<?php echo $rows['amount']; ?>"></td>
    <td width="6%"><a href="#" class="remove">Excluir</td>
    </tr>

    <?php 
    } 
    ?>  
    </tbody>
    </table>
        <input type="submit" class="btn btn-primary" name="update" id="update" value="Salvar">
    </form>  

<?php
if (isset($_POST['update'])) {

$size = count($_POST['quantity']);
$size = count($_POST['product_name']);
$size = count($_POST['price']);
$size = count($_POST['discount']);
$size = count($_POST['amount']);

$i = 0;
while ($i<$size) {
$quantity= $_POST['quantity'][$i];
$product_name= $_POST['product_name'][$i];
$price= $_POST['price'][$i];
$discount= $_POST['discount'][$i];
$amount= $_POST['amount'][$i];
$id= $_POST['id'][$i];


$query = ("UPDATE tbl_orderdetail SET product_name='$product_name', quantity='$quantity', price='$price', discount='$discount', amount='$amount' WHERE id = '$id'");

mysql_query($query) or die ("Error in query: $query");
++$i;

}
header( "Location: consulta_orc.php");
mysql_close();
}
?> 

2 个答案:

答案 0 :(得分:0)

您的查询只会更新表中存在id的行。您需要按id执行搜索,如果id确实存在,则执行update else else插入新行。

x.map(xs => y.zip(xs).toMap)

希望这有帮助,可能需要进行一些修改才能适应您的情况,但应该让您了解如何解决您的问题。

答案 1 :(得分:-1)

您可能希望在重复密钥更新中使用插入....

如果没有给出orderid,这将插入一个新行,但如果orderid与该语句一起存在,则会更新现有行。有关详细信息,请参阅以下链接:https://dev.mysql.com/doc/refman/5.0/en/insert-on-duplicate.html