我从一个表中检索多行,然后将它们显示在表格中,如图像中的 - > Click here for view the image < -
在数据库中,“status”值设置为“pending”,因此我想选择几个学生并将“status”更改为“approved”,然后进行一次更新以更新我检查的每一行。
这是我上面图片的代码......
<?php
include("connection.php");
echo "<table border='1'><tr>
<td><strong>Student ID</strong></td>
<td><strong>Student Name</strong></td>
<td><strong>Kelompok</strong></td>
<td><strong>Block</strong></td>
<td><strong>Level</strong></td>
<td><strong>House</strong></td>
<td><strong>Status</strong></td>
</tr>";
$i=0;
while ($ww=mysqli_fetch_array($query))
{
if ($i%2==0)
$class="evenRow";
else
$class="oddRow";
$id=$ww[0];
$studentid=$ww[1];
$name=$ww[2];
$kelompok=$ww[8];
$block=$ww[9];
$level=$ww[10];
$house=$ww[11];
$status=$ww[14];
echo "<tr>
<input type=hidden name=applyid[] value=".$id."/>
<td>$studentid</td>
<td>$name</td>
<td>$kelompok</td>
<td>$block</a></td>
<td>$level</td>
<td>$house</td>
<td>
<input type=checkbox name=status[] value=".$id."approved checked> APPROVED <br>
</td>
</tr>";
}
$i++;
echo "</table>";
?>
<br>
<a href="officerapplicationupdate.php?applyID=<?php echo $id; ?>"><input type="submit" value="Update"></a>
</form>
<br><br>
</table>
这是更新行的代码..
<?php
include("connection.php");
if(isset($_POST["submit"]) && $_POST["submit"]!="") {
$idCount = count($_POST["status"]);
for($i=0;$i<$idCount;$i++) {
mysqli_query("UPDATE application SET apply_status='".$_POST["status"][$i]."'
WHERE apply_id='".$_POST["applyid"]."'");
}
}
?>
答案 0 :(得分:0)
您可以准备语句并在之后执行。这可以这样做:
$in = array();
if(isset($_POST["submit"]) && $_POST["submit"]!="") {
$idCount = count($_POST["status"]);
for($i=0;$i<$idCount;$i++) {
$in[] .= $_POST["applyid"][$i];
}
}
mysqli_query("UPDATE application SET apply_status='approved' WHERE apply_id IN '".implode(",",$in)."'");
因此只需要一个查询。
您还可以总结其他apply_status的更改。
请注意检查来自网页的输入以防止SQL注入!