-
Notifications
You must be signed in to change notification settings - Fork 2
/
call_maps_download.php
46 lines (32 loc) · 1.03 KB
/
call_maps_download.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
<?php
// Start XML file, create parent node
$dom = new DOMDocument("1.0");
$node = $dom->createElement("markers");
$parnode = $dom->appendChild($node);
// Opens a connection to a MySQL server
include 'db.php';
// Check connection
if (!$conn) {
die("Connection failed: " . mysqli_connect_error());
}
// Select all the rows in the markers table
$query = "SELECT * FROM Stations WHERE Shidden = 0";
$result = mysqli_query($conn, $query);
if (!$result) {
die('Invalid query: ' . mysqli_error());
}
header("Content-type: text/xml");
// Iterate through the rows, adding XML nodes for each
while ($row = mysqli_fetch_assoc($result)){
//Add to XML document node
$node = $dom->createElement("marker");
$newnode = $parnode->appendChild($node);
$newnode->setAttribute("SID",$row['SID']);
$newnode->setAttribute("Name",$row['Sname']);
$newnode->setAttribute("lat",$row['Slatitude']);
$newnode->setAttribute("lng",$row['Slongitude']);
$newnode->setAttribute("Sequence",$row['Ssequence']);
}
echo $dom->saveXML();
include 'closeDB.php';
?>