我正在学习PHP和MySQL。我在尝试教程:
https://developers.google.com/maps/articles/phpsqlsearch_v3?hl=en
代码中的查询似乎是空的。我按照说明在我的数据库设置中有一个表。使用echo调用我已经确认我正在获得一个有效的数据库连接,所有变量都被正确调用。如果我在该表上运行一个基本的数据库查询(即没有任何数学或冲刺),我会从表中返回行。 “base2.php”文件只包含教程中的3个项目(dbname,username和password),这些是正确的。因此,当我使用所需的URL语法从localhost加载页面时:
pagename.php?lat=37&lng=-122&radius=25
我只得到一个带有xml标题的空白页面。正如我所说,使用echo,我已经确认脚本正在查询,它将返回为空。有没有人玩过本教程并发现任何问题?我使用IE11,Chrome和FF得到了相同的结果。我正在使用WAMPserver v2.4,PHP 5.4.12,MySQL 5.6.12和Apache 2.4.4。 db中的表具有正确的行和值,并且包含数据。
<?php require "base2.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 ("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());
}
// Search the rows in the stores table
$query = sprintf("SELECT Name, Address, lat, lng, ( 3959 * acos( cos( radians('%s') ) * cos( radians( lat ) ) * cos( radians( lng ) - radians('%s') ) + sin( radians('%s') ) * sin( radians( lat ) ) ) ) AS distance FROM stores HAVING distance < '%s' ORDER BY distance LIMIT 0 , 10",
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();
?>
答案 0 :(得分:0)
你必须考虑这条线上的国际ASCII字符 header(“Content-type:text / xml”); 就像这样 header(“Content-type:text / xml charset = utf-8”); 然后将生成xml文件