-
Notifications
You must be signed in to change notification settings - Fork 0
/
smartupdate3.php
67 lines (54 loc) · 2.33 KB
/
smartupdate3.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
<?php
$dbhost = "db.previousk.com";
$dbuser = "georgeartem";
$dbpass = "Blahblah87";
$dbname = "smartcourt";
$connection = mysqli_connect($dbhost, $dbuser, $dbpass, $dbname);
if(mysqli_connect_errno()) {
die("Database connection failed:" . mysqli_connect_error() . "(" . mysqli_connect_errno(). ")");
}
// database query for the most recent values ordered by each courtid at a given location. There are multiple queries for multiple locations
$query1 = "select status, time, courtid, locationid from courts c1 where (time = (select max(time) from courts c2 where c2.courtid = c1.courtid) AND locationid = 1)";
$query2 = "select status, time, courtid, locationid from courts c1 where (time = (select max(time) from courts c2 where c2.courtid = c1.courtid) AND locationid = 2)";
$result = mysqli_query($connection, $query1);
if(!result) {
die("Database query failed.");
}
$result2 = mysqli_query($connection, $query2);
if(!result2) {
die("Database query failed.");
}
// return data to display on the page
//open the json file and then run the while loop.
// $query = "select status, time, courtid from courts c1 where time = (select max(time) from courts c2 where c2.courtid = c1.courtid)";
//////////////////////////////////////////////////////////////////////
////// ADD CODE TO SUPPORT MULTIPLE LOCATIONS IN WRITING THE JSON FILE
$response = array();
$data = array();
$data2 = array();
$file = fopen('/home/alexcurrier/previousk.com/smartcourt/api/courtdata.json.txt', 'w+');
while ($row = mysqli_fetch_array($result)){
// output data from each row
$status=$row['status'];
$time=$row['time'];
$courtid=$row['courtid'];
$locationid=$row['locationid'];
$data[] = array('status'=> $status, 'time' => $time, 'courtid' =>$courtid, 'locationid' => $locationid);
}
while ($row2 = mysqli_fetch_array($result2)){
// output data from each row
$status2=$row2['status'];
$time2=$row2['time'];
$courtid2=$row2['courtid'];
$locationid2=$row2['locationid'];
$data2[] = array('status'=> $status2, 'time' => $time2, 'courtid' =>$courtid2, 'locationid' => $locationid2);
}
$response['data']= $data;
$response['data2']= $data2;
var_dump($response);
fwrite($file, json_encode($response));
fclose($file);
mysqli_free_result($result);
mysqli_free_result($result2);
mysqli_close($connection);
?>