可能重复:
PHP 已发送的标头
我正在尝试遵循本教程:
使用 PHP、MySQL 和 Google Maps Google Geo API 团队创建商店定位器;
2009 年 8 月
我已经到了拥有 MySQL 位置数据表的地步。为了我的目的,我更改了本教程中的代码元素。我只是想从 MySQL 表中提取所有数据并将其转换为 XML,以便 Google Maps API 可以读取它。
不幸的是,当我运行下面的代码时,浏览器页面没有加载并收到以下错误:
警告:无法修改标头信息 - 标头已由第 43 行 .../getdata/genxml.php 中的(输出开始于 .../getdata/genxml.php:8)发送
这可能是有问题的行:
header("Content-type: text/xml");
这是整个代码块。我犯了什么错误?谢谢!
<?php
require("phpsqlsearch_dbinfo.php");
//Get parameters from URL
//$center_lat = $_GET["lat"];
//$center_lng = $_GET["lng"];
// 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 markers table
$query = sprintf("SELECT * FROM markers WHERE 1");
$result = mysql_query($query);
$result = mysql_query($query);
if (!$result) {
die("Invalid query: " . mysql_error());
}
// **Below is line 42. The error may be here.**
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("id", $row['id']);
$newnode->setAttribute("address", $row['address']);
$newnode->setAttribute("lat", $row['lat']);
$newnode->setAttribute("lng", $row['lng']);
$newnode->setAttribute("bt", $row['bt']);
$newnode->setAttribute("dt", $row['dt']);
$newnode->setAttribute("br", $row['br']);
$newnode->setAttribute("bth", $row['bth']);
$newnode->setAttribute("sqft", $row['sqft']);
$newnode->setAttribute("lp", $row['lp']);
$newnode->setAttribute("url", $row['url']);
$newnode->setAttribute("dom", $row['dom']);
}
echo $dom->saveXML();
?>