forked from Ysurac/FlightAirMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdate-statistics-aircraft.php
82 lines (65 loc) · 2.66 KB
/
date-statistics-aircraft.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
require('require/class.Connection.php');
require('require/class.Spotter.php');
$spotter_array = Spotter::getSpotterDataByDate($_GET['date'],"0,1", $_GET['sort']);
if (!empty($spotter_array))
{
date_default_timezone_set('America/Toronto');
$title = 'Most Common Aircraft on '.date("l F j, Y", strtotime($spotter_array[0]['date_iso_8601']));
require('header.php');
print '<div class="select-item">';
print '<form action="'.$globalURL.'/date" method="post">';
print '<label for="date">Select a Date</label>';
print '<input type="text" id="date" name="date" value="'.$_GET['date'].'" size="8" readonly="readonly" class="custom" />';
print '<button type="submit"><i class="fa fa-angle-double-right"></i></button>';
print '</form>';
print '</div>';
print '<div class="info column">';
print '<h1>Flights from '.date("l F j, Y", strtotime($spotter_array[0]['date_iso_8601'])).'</h1>';
print '</div>';
include('date-sub-menu.php');
print '<div class="column">';
print '<h2>Most Common Aircraft</h2>';
print '<p>The statistic below shows the most common aircrafts of flights on <strong>'.date("l F j, Y", strtotime($spotter_array[0]['date_iso_8601'])).'</strong>.</p>';
$aircraft_array = Spotter::countAllAircraftTypesByDate($_GET['date']);
if (!empty($aircraft_array))
{
print '<div class="table-responsive">';
print '<table class="common-type table-striped">';
print '<thead>';
print '<th></th>';
print '<th>Aircraft Type</th>';
print '<th># of Times</th>';
print '<th></th>';
print '</thead>';
print '<tbody>';
$i = 1;
foreach($aircraft_array as $aircraft_item)
{
print '<tr>';
print '<td><strong>'.$i.'</strong></td>';
print '<td>';
print '<a href="'.$globalURL.'/aircraft/'.$aircraft_item['aircraft_icao'].'">'.$aircraft_item['aircraft_name'].' ('.$aircraft_item['aircraft_icao'].')</a>';
print '</td>';
print '<td>';
print $aircraft_item['aircraft_icao_count'];
print '</td>';
print '<td><a href="'.$globalURL.'/search?aircraft='.$aircraft_item['aircraft_icao'].'&start_date='.$_GET['date'].'+00:00&end_date='.$_GET['date'].'+23:59">Search flights</a></td>';
print '</tr>';
$i++;
}
print '<tbody>';
print '</table>';
print '</div>';
}
print '</div>';
} else {
$title = "Unknown Date";
require('header.php');
print '<h1>Error</h1>';
print '<p>Sorry, this date does not exist in this database. :(</p>';
}
?>
<?php
require('footer.php');
?>