-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstats.php
27 lines (26 loc) · 956 Bytes
/
stats.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
<?php
$all = isset($_GET['all']) && $_GET['all'] == 'true' ? '&all=true' : '';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html;charset=ISO-8859-1" />
<title>JobMine Interview Notifier Stats</title>
<style type="text/css">
body {
font-family: "Lucida Grande", Tahoma, Verdana, Helvetica;
}
</style>
</head>
<body>
<h1>JobMine Interview Notifier Stats</h1>
<h2>Last 5 Days</h2>
<img src="/stats_img.php?type=1<?=$all?>" />
<img src="/stats_img.php?type=2<?=$all?>" />
<img src="/stats_img.php?type=3<?=$all?>" />
<img src="/stats_img.php?type=4<?=$all?>" />
<img src="/stats_img.php?type=5<?=$all?>" />
<img src="/stats_img.php?type=6<?=$all?>" />
<img src="/stats_img.php?type=7<?=$all?>" />
</body>
</html>