forked from anirbandutta9/PHP_KUIZ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayers.php
71 lines (61 loc) · 1.74 KB
/
players.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 session_start(); ?>
<?php include "connection.php";
if (isset($_SESSION['admin'])) {
?>
<!DOCTYPE html>
<html>
<head>
<title>PHP-Kuiz</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/style1.css">
</head>
<body>
<header>
<div class="container">
<h1>PHP-Kuiz</h1>
<a href="index.php" class="start">Home</a>
<a href="add.php" class="start">Add Question</a>
<a href="allquestions.php" class="start">All Questions</a>
<a href="players.php" class="start">Players</a>
<a href="exit.php" class="start">Logout</a>
</div>
</header>
<h1> All Players</h1>
<table class="data-table">
<caption class="title">All kuiz players</caption>
<thead>
<tr>
<th>Player Id</th>
<th>Email</th>
<th>Played On</th>
<th>Score</th>
</tr>
</thead>
<tbody>
<?php
$query = "SELECT * FROM users ORDER BY played_on DESC";
$select_players = mysqli_query($conn, $query) or die(mysqli_error($conn));
if (mysqli_num_rows($select_players) > 0 ) {
while ($row = mysqli_fetch_array($select_players)) {
$id = $row['id'];
$email = $row['email'];
$played_on = $row['played_on'];
$score = $row['score'];
echo "<tr>";
echo "<td>$id</td>";
echo "<td>$email</td>";
echo "<td>$played_on</td>";
echo "<td>$score</td>";
echo "</tr>";
}
}
?>
</tbody>
</table>
</body>
</html>
<?php }
else {
header("location: admin.php");
}
?>