0

php/mysql で非常に奇妙な動作に遭遇しています。現在、名前、住所、緯度、経度、およびタイプの値を含む場所のデータベースがあります。

次のコードを使用して、データベースから 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 に答える