-
Notifications
You must be signed in to change notification settings - Fork 0
/
hits.php
51 lines (35 loc) · 1.85 KB
/
hits.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
50
51
<?php require_once('inc/header.php'); ?>
<?php require_once('inc/side.php'); ?>
<?php require_once('login_fun.php');
ob_start();
if (!isset($_SESSION["username"]) ) {
header('location:index.php');
}
?> <!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<!-- Main content -->
<section class="content">
<!-- /content_begin-->
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<h3> Hits</h3>
</div>
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<table class="table table-striped table-hover">
<tbody><tr><th class="th1"> Hits Today</th><th class="th1" style="border-left:none;"> Last 7 Days</th><th class="th1" style="border-left:none;"> This Month</th><th class="th1" style="border-left:none;"> Last Month</th><th class="th1" style="border-left:none;"> Total Hits</th></tr>
<tr align="center"><td class="td1">0</td><td class="td1" style="border-left:none;">0</td><td class="td1" style="border-left:none;">0</td><td class="td1" style="border-left:none;">0</td><td class="td1" style="border-left:none;">0</td></tr>
</tbody></table></div><div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<fieldset><legend><strong> Last 10 visitors</strong></legend><strong></strong></fieldset></div>
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<fieldset><legend>
<strong> Last 10 referers</strong>
</legend><strong></strong></fieldset></div>
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<fieldset><legend>
<strong> Best referers</strong>
</legend><strong></strong></fieldset></div></div>
</section>
</div>
<!-- /.footer -->
<?php require_once('inc/footer.php'); ?>