商店定位器示例 - 无法获取要返回的记录

时间:2011-11-10 18:49:12

标签: php ajax google-maps-api-3

我想知道是否有人可以帮助我。我正在尝试学习如何构建“商店定位器”,并且我正在研究Google开发者网站上显示的示例。

我已将记录添加到我的数据库并创建了HTML表单,但我无法使php脚本工作,即没有返回记录。

<?php  
require("phpfile.php");

// Get parameters from URL
$center_lat = $_GET["lat"];
$center_lng = $_GET["lng"];
$radius = $_GET["radius"];

// 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 ("hostname", $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());
}

// Search the rows in the markers table
$query = sprintf("SELECT address, name, lat, lng, ( 3959 * acos( cos( radians('%s') ) * cos( radians( lat ) ) * cos( radians( lng ) - radians('%s') ) + sin( radians('%s') ) * sin( radians( lat ) ) ) ) AS distance FROM markers HAVING distance < '%s' ORDER BY distance LIMIT 0 , 20",
  mysql_real_escape_string($center_lat),
  mysql_real_escape_string($center_lng),
  mysql_real_escape_string($center_lat),
  mysql_real_escape_string($radius));
$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)){
  $node = $dom->createElement("marker");
  $newnode = $parnode->appendChild($node);
  $newnode->setAttribute("name", $row['name']);
  $newnode->setAttribute("address", $row['address']);
  $newnode->setAttribute("lat", $row['lat']);
  $newnode->setAttribute("lng", $row['lng']);
  $newnode->setAttribute("distance", $row['distance']);
}

echo $dom->saveXML();
?>

我已经看了一段时间了,我看不出哪里出错了。有人可能请看看这个,让我知道我哪里出错了。

非常感谢

1 个答案:

答案 0 :(得分:1)

我刚刚将您使用的查询与我用于我编写的非常类似的应用程序的查询进行了比较。除了变量周围的单引号外,一切都完全相同 - center_lat, center_lng, radius

因此,假设这些变量设置正确,删除它们周围的单引号应该可以解决您的问题。