gpt4 book ai didi

php - 尝试批准、拒绝或删除多个用户

转载 作者:行者123 更新时间:2023-11-29 22:56:52 25 4
gpt4 key购买 nike

我正在创建一个我希望能够批准、拒绝或删除的用户列表。我不想一一做,因为这样工作量太大。 My list of users

我有以下用于批准、拒绝和删除列的代码:

<tr>
<input type="hidden" name="user_id" value="'.$row['user_id'].'">
<td style="text-align:center; padding:20px; background-color:#DFF0D8;">
<input type="radio" name="approve[]" value="1">
</td>
<td style="text-align:center; padding:20px; background-color:#FCF8E3;">
<input type="radio" name="approve[]" value="0">
</td>
<td style="text-align:center; padding:20px; background-color:#FCDEDE;">
<input type="radio" name="approve[]" value="3">
</td>
</tr>

我希望能够将 MySQL 中“users”表中的“approved”列设置为 1(如果批准),如果被拒绝则将其保留为 0。如果选择“删除”,那么我希望能够删除该行数据。我该如何对用户列表执行此操作?如果只是一对一的,那很容易,但我不知道如何为多个用户做。

我想过循环遍历“approve”数组,但我无法更改数据库中的值,因为我不知道如何将其与 user_id 匹配。

感谢任何帮助。

最佳答案

这里是多重删除的示例:

index.php

<?php include('dbcon.php'); ?>
<form method="post" action="delete.php" >
<table cellpadding="0" cellspacing="0" border="0" class="table table-striped table-bordered" id="example">
<div class="alert alert-info">

<strong>Check the radion Button and click the Delete button to Delete Data</strong>
</div><thead>

<tr>
<th></th>
<th>FirstName</th>
<th>LastName</th>
<th>MiddleName</th>
<th>Address</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<?php
$query=mysql_query("select * from member")or die(mysql_error());
while($row=mysql_fetch_array($query)){
$id=$row['member_id'];
?>

<tr>
<td>
<input name="selector[]" type="checkbox" value="<?php echo $id; ?>">
</td>
<td><?php echo $row['firstname'] ?></td>
<td><?php echo $row['lastname'] ?></td>
<td><?php echo $row['middlename'] ?></td>
<td><?php echo $row['address'] ?></td>
<td><?php echo $row['email'] ?></td>
</tr>

<?php } ?>
</tbody>
</table>
<input type="submit" class="btn btn-danger" value="Delete" name="delete">

删除.php

<?php 
include('dbcon.php');
if (isset($_POST['delete'])){
$id=$_POST['selector'];
$N = count($id);
for($i=0; $i < $N; $i++){
$result = mysql_query("DELETE FROM member where member_id='$id[$i]'");}
header("location: index.php"); } ?>

关于php - 尝试批准、拒绝或删除多个用户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28680632/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com