我觉得这个问题有一个简单的解决方案,但我无法弄清楚。我正在使用 while 循环显示我的数据库的字段。在每个 while 循环的末尾是一个表单输入,管理员可以在其中批准用户。(所有已批准的需要做的就是在该特定记录的已批准列中将 1 更改为 2)。
所有已批准的记录都会更改,而不是我想要的特定记录。我的问题是如何一次只选择和更改一条记录。(获得批准的记录)。非常感谢您为我提供的任何帮助。
<?php
//select the database to write to
$unapprovedTeachers = mysql_query("SELECT * FROM members_teachers WHERE approved = '1'", $dbc) or die("Could not select the unapproved teachers at this time.");
//While loop to cycle through the rows
while($row = mysql_fetch_assoc($unapprovedTeachers)){
$teacher_id = $row['id'];
echo $teacher_id;
?>
<ul class="admin-fields">
<?php
foreach($row as $field){
if(empty($field)){
echo "....";
}
print '<li>' .$field.' </li>';
}//End For Each Loop
//print $teacher_id;
?>
</ul>
<footer>
<?php
if(isset($_POST['approve'])){
mysql_query("UPDATE members_teachers SET approved = '2' WHERE id= ".$teacher_id."", $dbc) or die ("Oops something went wrong");
}
?>
<ul>
<li>
<form method="post">
<button name="approve" id="approve" type="submit">approve</button>
</form>
</li>
</ul>
</footer>
<!--End New Row-->
</section>
<?php
}//End While Lopp
mysql_close($dbc);
?>
</div>