0

我在 php/mysql 中遇到了一些非常奇怪的行为。我目前有一个包含名称、地址、lat、lng 和类型值的位置数据库。

我正在使用以下代码从数据库生成 xml

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

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))
{
    if($row['lat'] != 0 && $row['lng'] !=0)
    {
        // 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>';

?>

代码似乎有效,但只有在心情好的时候。它偶尔会生成适当的 XML,但通常什么都不做,只返回一个空白页。我从来没有见过这样的行为,有谁知道我做错了什么?如果有任何帮助,我会在 MAMP 上本地运行它。有谁知道发生了什么?

4

1 回答 1

2

@mysql_fetch_assoc($result) 抑制 sql 错误。您可能有一些被忽略的小问题。将其更改为 mysql_fetch_assoc($result) 并查看发生了什么。

于 2013-01-11T18:32:01.473 回答