MySQL使用row [id]更新'n'行的新信息?

时间:2012-06-27 06:47:26

标签: php javascript mysql html arrays

好的,我有一系列用作基于网络的库存系统的php文件。搜索项目并从列表中选择一项后,用户将转到显示先前所选项目的当前数量的页面。在同一页面上,javascript用于添加或减去当前数量值。我希望能够在当前数量的texbox中获取更新的值,并在MySQL中更新它们。

请注意,显示的项目数量会因搜索页面上选择的数量而异。

以下是更新页面,用户可以在其中添加或减去数量值:

<html>
<title>Update Selections</title>
<body>
<?php
    include("menu.php");
    include("sqlconnect.php");


?>
<script type="text/javascript">
/*<![CDATA[*/

function add(obj,ud){
 while (obj.parentNode){
  if (obj.nodeName.toUpperCase()=='TR'){
   obj=obj.getElementsByTagName('INPUT')[0];
   break;
  }
  obj=obj.parentNode;
 }
 if (obj.nodeName.toUpperCase()=='INPUT'){
  obj.value=Math.max(obj.value*1+ud,0);
 }
}


/*]]>*/
</script></head>


<p align="center"><b>Make Updates:</b>
<br />
<br />
The following items were selected for quantity update:
<br />
<br />
<table border="1">
<tr><th>Item:</th>
<th>QUANTITY</th>
<th>ADD/SUBTRACT</th></tr>
<style>
textarea {resize: none;}
</style>
<form action="updatequantityprocess.php" method="post">
<?php

        //$row_id = $_POST['itemselect'];
        foreach ($_POST['itemselect'] as $confirm)
        {

            $result = mysql_query("SELECT * FROM inventory WHERE id='$confirm'");
            while ($row = mysql_fetch_array($result))
            {
                echo "<tr><td>" . $row['Item'] . "</td>";
                echo "<td bgcolor='grey'><input type='text' id='value' name='itemupdate[]' disabled='disabled' style='text-align: center' value='" . $row['QuaninInventory'] . "'><input type='hidden' value='" . $row['id'] . "' name='itemid[]'></td>";
                echo "<td><div align='center'><input type='button' value='+' onclick='add(this, 1)'><input type='button' value='-' onclick='add(this, -1)'></div></td></tr>";

            }
        }
        echo "</table>";
?>
<br />
<br />
<input type="submit" value="Update">
<br />
<INPUT TYPE="BUTTON" VALUE="<-- Back to Results" ONCLICK="window.location.href='http://localhost/Inventory/quantitybybrandprocess.php'">
</p>
</form>
</body>     
</html>

我不知道如何构建下一页quantityupdateprocess.php,使用itemupdate[]item[]数组来更新MySQL数据库中的选定项目。

2 个答案:

答案 0 :(得分:1)

使用foreach循环遍历所有itemid并单独更新每个itemid。

foreach($_POST["itemids"] as $itemid){
    //Do mysql update based on other fields (make sure to escape itemid, and the other fields as well, or even better use prepared statements).
}

要访问当前项目的数量,请执行以下操作。

foreach($_POST["itemids"] as $i=>$itemid){
    //do mysql updates where $_POST["itemupdate"][$i] is the item update for the item id.
}

答案 1 :(得分:0)

我将根据您的问题标题以简单的方式呈现它:

首先,强烈建议不要使用mysql扩展程序,而是使用PHP PDO

示例:

$DBH = new PDO('mysql:host=http://yourhost.com;dbname=yourdbname;charset=utf8', 'username', 'password');
$DBH->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

$STH = $DBH->prepare('INSERT INTO `yourtable` (`column1`, `column2`) VALUES (?, ?)');

foreach($array as $value) {
    $STH->bindParam(1, $value);
    $STH->bindParam(2, $value);
    $STH->execute();
}

$DBH = null;

您可以使用prepared statements自动转义所有无效或有问题的字符。您还可以制作一个准备好的语句并重复使用它来插入大量数据,同时优化整个过程。

您可以在phpro.org's PDO tutorial pages找到更多信息。他们得到了很好的解释。

关于你的问题,在这种情况下你可能需要实现这样的事情:

假设您通过id => values[]收到$_POST表单的数组,因此您的查询将如下所示:

$DBH = new PDO('mysql:host=http://yourhost.com;dbname=yourdbname;charset=utf8', 'username', 'password');
$DBH->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

$STH = $DBH->prepare('UPDATE `yourtable` SET `column1` = ?, `column2` = ? WHERE `id` = ?');

foreach($array as $id => $values) {
    $STH->bindParam(1, $values[0]);
    $STH->bindParam(2, $values[1]);
    $STH->bindParam(3, $id);
    $STH->execute();
}