-
Notifications
You must be signed in to change notification settings - Fork 3
/
delete_user_delete.php
125 lines (71 loc) · 2.78 KB
/
delete_user_delete.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?php
/*
* Copyright (c) 2016-2017 Barchampas Gerasimos <http://makbox.co.nf/>
* Makbox is a personal (staas) cloud.
*
* Makbox is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
*
* Makbox is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
session_start();
if (isset($_POST['submit_delete_user']))
{
require('class_cn.php');
$obj = new in;
$host = $obj->connect[0];
$user = $obj->connect[1];
$pass = $obj->connect[2];
$db = $obj->connect[3];
$conn = new mysqli ($host,$user,$pass,$db);
if($conn->connect_error)
{
die("Database connection failed: " .$conn->connect_error);
}
else
{
require_once('function_data.php');
$delete_user = input($_POST['delete_user']);
$delete_user = $conn->real_escape_string($delete_user);
$sql0="select username from login";
$result0=$conn->query($sql0);
while($row0=$result0->fetch_assoc())
{
if ($delete_user != $row0['username'])
{
echo '<script type="text/javascript">alert("This user dont exist!");
</script>';
echo ("<script>location.href='delete_user.php'</script>");
}
else
{
$sql1="delete from folder_uploads where _to = '$delete_user'";
$result1 = $conn->query($sql1);
$sql2="delete from login where username = '$delete_user'";
$result2 = $conn->query($sql2);
$sql3="delete from backup_login where username = '$delete_user'";
$result3 = $conn->query($sql3);
$sql4="delete from profile where username = '$delete_user'";
$result4 = $conn->query($sql4);
$sql5="delete from hard_disk where user = '$delete_user'";
$result5 = $conn->query($sql5);
$sql6="delete from modules_details where user_login = '$delete_user'";
$result6 = $conn->query($sql6);
header("Location: delete_user.php");
} // end of else for username
} // end of while
// $_SESSION['success_msg'] = 'File have been deleted successfully.';
} // kleisimo ths else gia ta dedomena
$conn->close();
}//telos ths if gia ton elenxo me thn issset
?>