好的,我有一组 php 文件作为基于 Web 的库存系统。在搜索一个项目并从列表中选择一个之后,用户将被带到一个页面,该页面显示先前选择的项目的当前数量。在同一页面上,javascript 用于添加或减去当前数量值。我希望能够在 Present Quantity texboxes 中获取更新的值,并在 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 数据库中的选定项目。