-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusers.php
More file actions
43 lines (39 loc) · 1.29 KB
/
Copy pathusers.php
File metadata and controls
43 lines (39 loc) · 1.29 KB
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
session_start();
if (!isset($_SESSION['unique_id'])) { // if user is not logged in, then users.php cannot be accessed and will redirect to login page
header('location : login.php');
}
?>
<?php include_once 'header.php' ?>
<body>
<div class="wrapper">
<section class="users">
<header>
<?php
include_once 'php/config.php';
$sql = mysqli_query($conn, "SELECT * FROM users WHERE unique_id = {$_SESSION['unique_id']}");
if (mysqli_num_rows($sql) > 0) {
$row = mysqli_fetch_assoc($sql);
}
?>
<div class="content">
<img src="php/images/<?php echo $row['img'] ?>" alt="">
<div class="details">
<span><?php echo $row['fname'] . " " . $row['lname'] ?></span>
<p><?php echo $row['status'] ?></p>
</div>
</div>
<a href="php/logout.php?logout_id=<?php echo $row['unique_id'] ?>" class="logout">Logout</a>
</header>
<div class="search">
<span class="text">Select a user to start chat</span>
<input type="text" placeholder="Enter name to search...">
<button><i class="fas fa-search"></i></button>
</div>
<div class="users-list">
</div>
</section>
</div>
</body>
<script src="./javascript/users.js"></script>
</html>