-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfooter.php
31 lines (25 loc) · 903 Bytes
/
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
</div><!--allweb-->
<div class="footer">
<?php
$sql = "SELECT * FROM footer ";
$statment = $pdo->query($sql);
while ($row = $statment->fetch(PDO::FETCH_ASSOC)):
?>
<ul>
<a class="btn btn-lg btn-light" href="<?php echo $row['link'] ?>"><?php echo $row['title'] ?></a>
</ul>
<?php endwhile; ?>
<!--div class="social">
<ul>
<a href="#" class="twitte"><i class="fab fa-instagram"></i></a>
<a href="#" class="facebook"><i class="fab fa-facebook"></i></a>
<a href="#" class="google"><i class="fab fa-whatsapp-square"></i></a>
<a href="#" class="wha"><i class="fab fa-youtube"></i></a>
</ul>
</div-->
<div class="footer-copyright">
<p>© 2018 created by hossein haghparast </p>
</div>
</div>
</body>
</html>