-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
42 lines (40 loc) · 1.43 KB
/
footer.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
<footer class="page-footer orange">
<div class="container">
<div class="row">
<div class="col l6 s12">
<?php
$qd = $db->query("select judul,isi from informasi");
$dd = $qd->fetch_array();
?>
<h5 class="white-text"><?=$dd['judul'];?></h5>
<div class="grey-text text-lighten-4"><?=$dd['isi'];?></div>
</div>
<div class="col l3 s12">
<h5 class="white-text">Links</h5>
<ul>
<?php
$ql = $db->query("select * from tautan where bagian='links' and level='all'");
while($dl = $ql->fetch_array()){ ?>
<li><a class="white-text" href="<?=$dl['tautan'];?>"><?=$dl['kata'];?></a></li>
<?php } ?>
</ul>
</div>
<div class="col l3 s12">
<h5 class="white-text">Connect</h5>
<ul>
<?php
$ql = $db->query("select * from tautan where bagian='connect' and level='all'");
while($dl = $ql->fetch_array()){ ?>
<li><a class="white-text" href="<?=$dl['tautan'];?>"><?=$dl['kata'];?></a></li>
<?php } ?>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
Made by <a class="orange-text text-lighten-4" href="http://materializecss.com">Materialize</a>
and <a class="orange-text text-lighten-4" href="#">Agus Prasetyo</a>
</div>
</div>
</footer>