Skip to content
Permalink
881258b339
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
49 lines (35 sloc) 1.31 KB
<?php
require("cred.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
$connection=mysql_connect ('localhost', $username, $password);
if (!$connection) { die('Not connected : ' . mysql_error());}
// Set the active MySQL database
$db_selected = mysql_select_db($database, $connection);
if (!$db_selected) {
die ('Can\'t use db : ' . mysql_error());
}
// Select all the rows in the markers table
$query = "SELECT * FROM well_completion_report WHERE 1 LIMIT 10";
$result = mysql_query($query);
if (!$result) {
die('Invalid query: ' . mysql_error());
}
header("Content-type: text/xml");
// Iterate through the rows, adding XML nodes for each
while ($row = @mysql_fetch_assoc($result)){
// Add to XML document node
$node = $dom->createElement("marker");
$newnode = $parnode->appendChild($node);
$newnode->setAttribute("id",$row['Permit_Number']);
$newnode->setAttribute("streetNumber", $row['Well_Street_Number']);
$newnode->setAttribute("streetName", $row['Well_Street_Name']);
$newnode->setAttribute("Town", $row['Well_Town']);
$newnode->setAttribute("lat", $row['Well_Latitude']);
$newnode->setAttribute("lng", $row['Well_Longitude']);
}
echo $dom->saveXML();
?>