-
Notifications
You must be signed in to change notification settings - Fork 8
/
delacctadmin.php
43 lines (38 loc) · 1.49 KB
/
delacctadmin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
require "include/bittorrent.php";
dbconn();
global $CURUSER;
if (get_user_class() < UC_ADMINISTRATOR)
stderr("Error", "Permission denied.");
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$userid = trim($_POST["userid"]);
if (!$userid)
stderr("Error", "Please fill out the form correctly.");
$res = sql_query("SELECT * FROM users WHERE id=" . sqlesc($userid)) or sqlerr();
if (mysql_num_rows($res) != 1)
stderr("Error", "Bad user id or password. Please verify that all entered information is correct.");
$arr = mysql_fetch_assoc($res);
$id = $arr['id'];
$name = $arr['username'];
$res = sql_query("DELETE FROM users WHERE id=$id") or sqlerr();
if (mysql_affected_rows() != 1)
stderr("Error", "Unable to delete the account.");
write_log("管理员 " . $CURUSER["username"] . " 删除了帐号 $arr[id] ($arr[username])" . (isset($_POST["reason"]) ? "(" . $_POST["reason"] . ")" : ""), 'normal');
stderr("Success", "The account <b>" . htmlspecialchars($name) . "</b> was deleted.", false);
}
stdhead("Delete account");
?>
<h1>Delete account</h1>
<table border=1 cellspacing=0 cellpadding=5>
<form method=post action=delacctadmin.php>
<tr>
<td class=rowhead>User name</td>
<td><input size=40 name=userid></td>
</tr>
<tr>
<td colspan=2><input type=submit class=btn value='Delete'></td>
</tr>
</form>
</table>
<?php
stdfoot();