| Current Path : /var/www/html/mmishra/iws8/html/imaterial/ |
| Current File : /var/www/html/mmishra/iws8/html/imaterial/geocode_genxml_suppliers.php |
<?php
/* $Id: geocode_genxml_suppliers.php 6941 2014-10-26 23:18:08Z daintree $*/
//$PageSecurity = 3;
$Title = _('Geocode Generate XML');
include ('includes/session.inc');
include('includes/SQL_CommonFunctions.inc');
function parseToXML($htmlStr)
{
$xmlStr=str_replace('<','<',$htmlStr);
$xmlStr=str_replace('>','>',$xmlStr);
$xmlStr=str_replace('"','"',$xmlStr);
$xmlStr=str_replace("'",''',$xmlStr);
$xmlStr=str_replace("&",'&',$xmlStr);
return $xmlStr;
}
$sql = "SELECT * FROM suppliers WHERE 1";
$ErrMsg = _('An error occurred in retrieving the information');;
$result = DB_query($sql, $ErrMsg);
header("Content-type: text/xml");
// Iterate through the rows, printing XML nodes for each
echo '<markers>';
while ($myrow = DB_fetch_array($result)){
// ADD TO XML DOCUMENT NODE
echo '<marker ';
echo 'name="' . parseToXML($myrow['suppname']) . '" ';
echo 'address="' . parseToXML($myrow["address1"] . ", " . $myrow["address2"] . ", " . $myrow["address3"] . ", " . $myrow["address4"]) . '" ';
echo 'lat="' . $myrow['lat'] . '" ';
echo 'lng="' . $myrow['lng'] . '" ';
echo 'type="' . $myrow['supptype'] . '" ';
echo '/>';
}
// End XML file
echo '</markers>';
?>