Menu

[2eb2a2]: / delete_user.php  Maximize  Restore  History

Download this file

41 lines (32 with data), 984 Bytes

 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
<?php session_start(); ?>
<html>
<head>
<title>deltasql - Delete User</title>
<link rel="stylesheet" type="text/css" href="deltasql.css">
</head>
<body>
<?php
include_once('utils/compatibility.inc.php');
setCompatibility(0);
include("conf/config.inc.php");
include("utils/utils.inc.php");
$rights = $_SESSION["rights"];
$user = $_SESSION["username"];
$userid = $_SESSION["userid"];
if ($rights<3) die("<b>Not enough rights to delete a user.</b>");
$deleteid = $_GET['id'];
if ($deleteid=="") exit;
mysql_connect($dbserver, $username, $password);
@mysql_select_db($database) or die("Unable to select database");
$query3="select * from tbuser where username='admin'";
$result3=mysql_query($query3);
$useradminid=mysql_result($result3,0,"id");
$query2="UPDATE tbscript SET user_id=$useradminid where user_id=$deleteid;";
mysql_query($query2);
$query="DELETE FROM tbuser where id=$deleteid;";
mysql_query($query);
mysql_close();
js_redirect("list_users.php");
?>
</body>
</html>
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.