-
Notifications
You must be signed in to change notification settings - Fork 71
/
last-usage.php
69 lines (55 loc) · 1.71 KB
/
last-usage.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!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" xml:lang="sk" lang="sk">
<head><title>Report</title>
<meta http-equiv="Expire" content="now" />
<meta http-equiv="Pragma" content="no-cache" />
<meta name="description" content="DATANEST na mape"/>
<meta name="copyright" content="Copyright (c) 2011 Michal Maly"/>
<meta name="author" content="Michal Maly"/>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<link href="style.css" type="text/css" rel="stylesheet" />
</head>
<body>
<h2>Last Usage Report</h2>
<?php
error_reporting(-1);
require_once 'vendor/autoload.php';
require_once "common.php";
function report()
{
global $db;
$result = $db->query("
SELECT max(time) as lastUsage,history.bikeNum,coalesce(standName,userName) as current
FROM `history` join bikes on bikes.bikenum=history.bikenum left join stands on bikes.currentStand=stands.standId left join users on bikes.currentUser=users.userid group by bikeNum order by lastusage asc
");
if ($result) {
$data = $result->fetchAllAssoc();
} else {
echo "problem s sql dotazom";
die("users bikes not fetched");
}
echo '<table style="width:50%">';
# echo '<caption>last usage</caption>';
echo "<tr>";
$cols = array("bikeNum","lastUsage","current");
foreach($cols as $col)
{
echo "<th>$col</th>";
}
echo "</tr>";
for($i=0; $i<count($data);$i++)
{
echo "<tr>";
foreach($cols as $col)
{
echo "<td>";
echo $data[$i][$col];
echo "</td>";
}
echo "</tr>";
}
echo "</table>";
}
report();
?>
</body></html>