-
Notifications
You must be signed in to change notification settings - Fork 6
/
footer.php
executable file
·49 lines (46 loc) · 2.31 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
43
44
45
46
47
48
49
<section class="global-page-header">
</section>
<?php
include_once('dbconnect.php');
//Get the name of current page open in browser
$namee=basename($_SERVER['PHP_SELF']);
//fetching page count from database for particular page
$qry=mysqli_query($link,"SELECT * from hits where nam='$namee'");
while($rowa = mysqli_fetch_assoc($qry))
{
//getting count INT
$out=$rowa['cnt'];
//echo "$out";
}
//now incrementing 1 in the fetched value
++$out;
//updating the new value in database
$qryu=mysqli_query($link,"UPDATE hits SET cnt='$out' WHERE nam='$namee'");
?>
<footer id="footer">
<div class="container">
<div class="col-md-8">
<p class="copyright">©: <span>2020</span> | Handcrafted with <span style="color: #FF0000; font-size: 25px;">♥</span> by <b><a href="index.php" title="Team EXE official website">Team .EXE</a></b></p>
</div>
<div class="col-md-4">
<!-- Social Media -->
<ul class="social">
<li>
<a href="https://www.facebook.com/teamexe/" target="_blank" title="Like us on Facebook" class="Facebook">
<i class="ion-social-facebook"></i>
</a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCpKkNivzH-N_a6n5zDaVZ6g" target="_blank" title="Subscribe us on Youtube" class="Youtube">
<i class="ion-social-youtube"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/teamexenith/" target="_blank" title="Follow on Instagram" class="Instagram">
<i class="ion-social-instagram"></i>
</a>
</li>
</ul>
</div>
</div>
</footer> <!-- /#footer -->