XML解析错误:文档元素之后的垃圾。谷歌地图数据库互动

时间:2015-03-12 20:41:26

标签: php mysql xml google-maps google-maps-api-3

您好我正在尝试从Google数据库中提取数据,以便根据Google开发者文章https://developers.google.com/maps/articles/phpsqlajax_v3的建议从Google地图中使用。我已经复制了他们的确切代码,试图在操作之前获得一个开始,但它不断抛出以下错误:XML解析错误:

文件元素之后的垃圾 地点:http://localhost/Google/phpsqlajax_xml3.php 第2行,第1列: ^ 我知道以前发过同样的错误,但我还没找到适合我的解决方案。任何建议表示赞赏!这是我的代码,直接来自谷歌:

<?php
//require("phpsqlajax_dbinfo.php");

$username="root";
$password="";
$database="my_db";



function parseToXML($htmlStr) 
{ 
$xmlStr=str_replace('<','&lt;',$htmlStr); 
$xmlStr=str_replace('>','&gt;',$xmlStr); 
$xmlStr=str_replace('"','&quot;',$xmlStr); 
$xmlStr=str_replace("'",'&#39;',$xmlStr); 
$xmlStr=str_replace("&",'&amp;',$xmlStr); 
return $xmlStr; 
} 

// 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 markers WHERE 1";
$result = mysql_query($query);
if (!$result) {
  die('Invalid query: ' . mysql_error());
}

header("Content-type: text/xml");

// Start XML file, echo parent node
echo '<markers>';

// Iterate through the rows, printing XML nodes for each
while ($row = @mysql_fetch_assoc($result)){
  // ADD TO XML DOCUMENT NODE
  echo '<marker ';
  echo 'name="' . parseToXML($row['name']) . '" ';
  echo 'address="' . parseToXML($row['address']) . '" ';
  echo 'lat="' . $row['lat'] . '" ';
  echo 'lng="' . $row['lng'] . '" ';
  echo 'type="' . $row['type'] . '" ';
  echo '/>';
}

// End XML file
echo '</markers>';

?>

1 个答案:

答案 0 :(得分:0)

以防万一其他人遇到类似问题,通过将所有mysql语句更改为mysqli等价物来解决问题。