-
Notifications
You must be signed in to change notification settings - Fork 0
/
all-friends.php
102 lines (83 loc) · 3.07 KB
/
all-friends.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
<?php
session_start();
if(!isset($_SESSION['id'])){
header("location: login.php");
}
require "database/connection.php";
if(isset($_SESSION['id'])){
$id = $_SESSION['id'];
}
//date_default_timezone_set('Africa/Lagos');
$sql = "SELECT * FROM users WHERE user_id=?";
$stmt = $conn->prepare($sql);
$stmt->bind_param('s', $id);
if($stmt->execute()){
$result = $stmt->get_result();
if($result->num_rows > 0){
$row = $result->fetch_assoc();
}
}
$rm_sql = "SELECT * FROM users WHERE user_id=? AND (department='' OR school='' OR faculty='')";
$rm_stmt = $conn->prepare($rm_sql);
$rm_stmt->bind_param('s', $id);
if($rm_stmt->execute()){
$rm_result = $rm_stmt->get_result();
if($rm_result->num_rows > 0){
echo "<script>location.href = 'verify-email.php';</script>";
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="./assets/img/easylearn/logo-cut.png" rel="icon">
<link href="./assets/img/easylearn/logo-cut.png" rel="apple-touch-icon">
<title>Smart Campus</title>
<link rel="stylesheet" href="vendors/bootstrap-3.3.7-dist/css/bootstrap.css">
<link rel="stylesheet" href="vendors/bootstrap-icons/bootstrap-icons.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/query.css">
<link rel="stylesheet" href="./assets/css/sweetalert.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600;1,700&family=Roboto:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
</head>
<body>
<section class="container-fluid index-wrapper">
<header class="d-flex-sb" style="padding-bottom: 1rem;">
<a href="javascript:history.back()"><i class="bi bi-chevron-left"></i></a>
<h3>Friends</h3>
</header>
<div class="messages-wrapper">
<!-- <div class="search-wrapper">
<div class="search-box d-flex-sb">
<input type="search" placeholder="Search Messages..." id="search">
<i class="bi bi-search"></i>
</div>
<hr>
</div> -->
<div class="sr"></div>
</div>
</section>
<?php require_once "includes/dashboard-footer.php"; ?>
<script>
$(document).ready(function(){
fetch_user();
setInterval(function(){
fetch_user();
}, 5000);
function fetch_user(){
$.ajax({
url:"backend/search-user.php",
method: "POST",
success: function(data){
$(".sr").html(data);
}
});
}
});
</script>