-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathachievement.php
38 lines (32 loc) · 956 Bytes
/
achievement.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
<!DOCTYPE html>
<?php include 'nav.php';
include 'achievement_navbar.php';
?>
<html>
<head>
<title>achievements</title>
<link rel="stylesheet" type="text/css" href="style/achievement.css">
</head>
<body>
<div class="content" id="all" class="bg-light">
<?php
include 'search.html';
$achievements = new achievement();
$achievement_rows = $achievements->display_achievements($user_id);
?>
<div class="achievements" >
<?php
foreach ($achievement_rows as $acheivement) {
?>
<div>
<a href="show_achievement.php?id=<?=$acheivement['id']?>" class="h3"><i class="fas fa-check-square"></i> <?= $acheivement['achievement'] ?></a>
<div>
<span><?= $acheivement['date'] ?> </span>
<button class=""><i class="fas fa-ellipsis-v"></i></button>
</div>
</div>
<?php }?>
</div>
</div>
</body>
</html>