我正在关注谷歌的谷歌地图教程:
https://developers.google.com/maps/articles/phpsqlajax_v3?hl=es
我这样格式化我的代码:
echo '<markers>';
// Iterate through the rows, adding XML nodes for each
for($i = 0; $i< $breweryNum; $i++ ){
echo '<marker ';
echo 'name="' . parseToXML($row['beerBrewery']) . '" ';
echo 'lat="' . $row['lat'] . '" ';
echo 'lng="' . $row['longi'] . '" ';
echo '/>';
}
// End XML file
echo '</markers>';
但是当我运行 php 文件来测试我的 xml 时,我得到了这个:
XML Parsing Error: not well-formed
Location: http://beerportfolio.com/getMapMarkers.php
Line Number 1, Column 18:<markers><marker <br />
-----------------^