1
|
<!DOCTYPE html>
|
2
|
<html lang='cs'>
|
3
|
|
4
|
<head>
|
5
|
<title>Průjezd vozidel - Plzeňský kraj</title>
|
6
|
<meta charset="utf-8" />
|
7
|
<meta name="description" content="" />
|
8
|
<meta name="keywords" content="" />
|
9
|
<meta name="robots" content="all" />
|
10
|
<link rel="stylesheet" href="css/main.css" type="text/css" />
|
11
|
</head>
|
12
|
|
13
|
<body>
|
14
|
<div>
|
15
|
<h1>Zobrazení dat o průjezdu vozidel pro Plzeňský kraj</h1>
|
16
|
<div>
|
17
|
<div>
|
18
|
<a href="control.php">Úvodní strana</a>
|
19
|
<a href="control.php?view=xxx">Další odkaz</a>
|
20
|
</div>
|
21
|
<div>
|
22
|
<form action="control.php" method="post" id="dateSelector">
|
23
|
<fieldset>
|
24
|
<div>Vyberte datum:</div>
|
25
|
<!--?php echo date("Y-m-d", strtotime("-1 day")); ?> -->
|
26
|
<input type="date" name="date" max="" />
|
27
|
<input type="submit" value="Zobrazit" />
|
28
|
</fieldset>
|
29
|
</form>
|
30
|
|
31
|
<table>
|
32
|
<tr>
|
33
|
<th>Detektor</th>
|
34
|
<th>Datum a čas</th>
|
35
|
<th>Intenzita</th>
|
36
|
<th>Intenzita "N"</th>
|
37
|
<th>Obsazenost</th>
|
38
|
<th>Rychlost</th>
|
39
|
<th>Stav</th>
|
40
|
<th>Typ vozidla</th>
|
41
|
<th>Trvání v setinách</th>
|
42
|
<th>Rychlost (historie)</th>
|
43
|
<th>Typ vozidla "10"</th>
|
44
|
</tr>
|
45
|
|
46
|
<!--?php
|
47
|
for ($i = 0; $i < count($traffic); $i++) {
|
48
|
echo "<tr>".$traffic[$i]->toString()."</tr>";
|
49
|
}
|
50
|
?-->
|
51
|
|
52
|
</table>
|
53
|
|
54
|
<table>
|
55
|
<tr>
|
56
|
<th>Název</th>
|
57
|
<th>Město</th>
|
58
|
<th>Ulice</th>
|
59
|
<th>Zařízení</th>
|
60
|
<th>Oblast</th>
|
61
|
</tr>
|
62
|
|
63
|
<!--?php
|
64
|
for ($i = 0; $i < count($locations); $i++) {
|
65
|
echo "<tr>".$locations[$i]->toString()."</tr>";
|
66
|
}
|
67
|
?-->
|
68
|
|
69
|
</table>
|
70
|
</div>
|
71
|
</div>
|
72
|
<div>
|
73
|
© ASWI team 2018
|
74
|
</div>
|
75
|
</div>
|
76
|
</body>
|
77
|
|
78
|
</html>
|