forked from jashgopani/Shuttergram
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathinsights.php
70 lines (63 loc) · 2.67 KB
/
insights.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
<?php
session_start();
require("bootstrap.php");
require("conn.php");
$username = $_SESSION['username'];
?>
<!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">
<title>Insights</title>
</head>
<body>
<?php require("navbar.php"); ?>
<h1 class="text-center my-5">STATISTICS</h1>
<table class="table text-center container my-5">
<thead>
<tr>
<th>USERNAME</th>
<th>NUMBER OF POSTS</th>
<th>TOTAL NUMBER OF LIKES</th>
<th>MAX LIKES ON A POST</th>
</tr>
</thead>
<tbody>
<?php
//number of posts
$queryNumberOfPosts = "SELECT count(media) from post WHERE postUser='".$username."'";
$resultNumberOfPosts = mysqli_query($conn,$queryNumberOfPosts);
$resultNumberOfPosts = mysqli_fetch_assoc($resultNumberOfPosts);
$resultNumberOfPosts = $resultNumberOfPosts['count(media)'];
//number of likes and max likes
$sql = "SELECT count(user)\n"
. "FROM post\n"
. "LEFT JOIN likes ON post.postId = likes.post WHERE postUser='".$username."'";
$resultLikes = mysqli_query($conn,$sql);
// var_dump($resultLikes);
$resultLikePosts = mysqli_fetch_assoc($resultLikes);
$resultLikeSumPosts = $resultLikePosts['count(user)'];
$sql2 = "SELECT count(user)\n"
. "FROM likes,post WHERE post.postId = likes.post AND post.postUser = '".$username."' GROUP BY post ORDER BY COUNT(user) DESC LIMIT 1";
$resultMaxLikes = mysqli_query($conn,$sql2);
$resultMaxLikePosts = mysqli_fetch_assoc($resultMaxLikes);
// print_r($resultMaxLikePosts);
$resultMaxLikesnew = $resultMaxLikePosts["count(user)"];
// echo $resultMaxLikesnew;
?>
<tr>
<td scope="row" class="table-primary"><?php echo $username; ?></td>
<td class="table-primary"><?php echo $resultNumberOfPosts; ?></td>
<td class="table-primary"><?php echo $resultLikeSumPosts; ?></td>
<td class="table-primary"><?php echo $resultMaxLikesnew; ?></td>
</tr>
<?php ?>
</tbody>
</table>
<br><br><br><br><br><br>
<?php require("footbar.php"); ?>
<script src="script.js"></script>
</body>
</html>