我需要使用前端HTML和后端PHP在MySQL表中使用唯一值更新 92行中的 2列。请注意,所有行都有唯一的ID。我认为,可以使用循环轻松完成。但是我对循环并不熟悉,因为我对这个领域很新。
这可能是一个重复的问题,但我没有从重复的问题中得到任何适当的解决方案。那是我发布的。
这是我的前端部分:
<table>
<thead>
<tr>
<th>ID</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
</tr>
</thead>
<tbody>
<form method="post" action="process.php">
<?php
$stmt = $mysqli->prepare("SELECT id,column2,column3,column4 FROM records");
$stmt->execute();
$stmt->store_result();
$stmt->bind_result($id,$column2,$column3,$column4);
while ($stmt->fetch()) {
?>
<tr>
<td><?php echo $id ?></td>
<td><?php echo $column2 ?></td>
<!-- Here User will input values for the below two fields in all the 92 rows -->
<td><input type="text" name="column3[<?php echo $id; ?>]"/></td>
<td><input type="text" name="column4[<?php echo $id; ?>]"/></td>
</tr>
<?php } ?>
<input type="submit" name="submit" value="Update all">
</form>
</tbody>
</table>
如果有人可以指导我如何一次更新所有行中的“column3”和“column4”字段,我将不胜感激。
process.php
<?php
if(isset($_POST['submit'])){
foreach($_POST['column3'] as $key=>$value AND $_POST['column4'] as $key=>$value1){
$stmt = $mysqli->prepare("UPDATE records SET column3 = ?, column4 = ? WHERE id = ?");
$stmt->bind_param('sss',$value,$value1,$key);
$stmt->execute();
}
if ($stmt->execute()) {
echo "Done!";
exit();
}
}
?>
答案 0 :(得分:0)
考虑使用带有值的隐藏数组输入字段作为HTML格式的UPDATE
查询中稍后需要的 id 。这样用户就不会看到它或影响它。然后在提交时,遍历count
个$_POST
数组。
HTML (在while循环中)
<td><input type="text" name="column3[]"></td>
<td><input type="text" name="column4[]"></td>
<input type="hidden" name="hiddenfield[]" value="<?php echo $id; ?>">
<强> PHP 强>
if(isset($_POST['submit'])){
for ($i = 0; $i < count($_POST['hiddenfield']); $i++) {
$key = $_POST['hiddenfield'][$i];
$value1 = $_POST['column3'][$i];
$value2 = $_POST['column4'][$i];
$stmt = $mysqli->prepare("UPDATE records SET column3 = ?, column4 = ? WHERE id = ?");
$stmt->bind_param('sss', $value1, $value2, $key);
$stmt->execute();
}
if ($stmt->execute()) {
echo "Done!";
exit();
}
}