-
Notifications
You must be signed in to change notification settings - Fork 2
/
edit_others_user.php
71 lines (61 loc) · 4.18 KB
/
edit_others_user.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
<?php
if (!isset($_SESSION)) session_start();
if (($_SESSION['userlevel'] === NULL) OR ($_SESSION['userlevel'] == 0)) {
die ("<h3 style='text-align: center; color: coral; margin-bottom: 10px'><span style='color: red'>Haha</span>! C'mon you can do better!</h3><form style='text-align: center' action=\"logout.php\" method=\"post\"><button style='font-size: larger' class=\"form1 btn btn-info btn-block\">Back</button><br/><br/></form>");
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Edit Other's profile (Admin) : CCNB</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="shortcut icon" href="img/logo.png" type="image/x-icon">
<link rel="icon" href="img/logo.png" type="image/x-icon">
</head>
<body>
<?php
require 'connect.php';
if (isset($_SESSION['username']) AND $_POST['departmentid']) {
$departmentID = $_POST['departmentid'];
$_SESSION['departId'] = $departmentID;
$query = "SELECT * FROM departments WHERE departmentId='$departmentID'";
$result = mysqli_query($mysql, $query) or die ("<h3>Sorry! Couldn't connect!</h3>");
while ($row = mysqli_fetch_assoc($result)) {
$department = $row['department'];
$_SESSION['depart'] = $department;
$query1 = "SELECT * FROM login_details WHERE departmentId='$departmentID'";
$result1 = mysqli_query($mysql, $query1) or die ("<h3>Sorry! Couldn't connect!</h3>");
while ($row1 = mysqli_fetch_assoc($result1)) {
$name = $row1['name'];
$_SESSION['anonymous'] = $name;
echo "<h3 style='text-align: center; color: #2daae4; margin-bottom: 10px'>Hello <span style='color: dodgerblue'>" . $_SESSION['name'] . "</span>, welcome to profile of <span style='color: dodgerblue'>" . $_SESSION['anonymous'] . "</span> from <span style='color: dodgerblue'>" . $_SESSION['depart'] . "</span>.</h3>";
}
}
} else {
echo "<h3 style='text-align: center; color: #2daae4; margin-bottom: 10px'>Hello <span style='color: dodgerblue'>" . $_SESSION['name'] . "</span>, welcome to profile of <span style='color: dodgerblue'>" . $_SESSION['anonymous'] . "</span> from <span style='color: dodgerblue'>" . $_SESSION['depart'] . "</span>.</h3>";
}
?>
<div class="form">
<a href="edit_others_username.php" class="form2 btn btn-info btn-block">Change username</a>
<a href="edit_others_password.php" class="form2 btn btn-danger btn-block">Change password</a><br/>
<a href="edit_others_department.php" class="form2 btn btn-warning btn-block">Change Department's name</a>
<a href="edit_others_description.php" class="form2 btn btn-warning btn-block">Change Department's description</a>
<a href="edit_others_link.php" class="form2 btn btn-warning btn-block">Change Department's link</a><br/>
<a href="edit_others_name.php" class="form2 btn btn-info btn-block">Change Profile Name</a>
<a href="edit_others_designation.php" class="form2 btn btn-primary btn-block">Change Designation</a>
<a href="edit_others_website.php" class="form2 btn btn-primary btn-block">Change Website</a>
<a href="edit_others_phone.php" class="form2 btn btn-primary btn-block">Change Phone number</a>
<a href="edit_others_email.php" class="form2 btn btn-primary btn-block">Change E-mail</a><br/>
<a href="edit_userlevel.php" class="form2 btn btn-danger btn-block">Change level : Admin or User</a>
</div>
<form action="edit_others_profile.php" method="post">
<button class="form1 btn btn-success btn-block">Back</button>
</form>
</body>
</html>