我从一个表中检索多行并将它们显示在一个类似图像的表中 ->单击此处查看图像<-
在数据库中,“状态”值设置为“待定”,因此我想选择几个学生并将“状态”更改为“已批准”,然后进行一次更新以更新我检查的每一行。
这是我上面图片的代码......
<?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"]."'");
}
}
?>