MySQLデータベースからXMLを生成するPHPファイルに問題があります。コードは以下のとおりです
<?php
require("decibelone_dbinfo.php");
function parseToXML($htmlStr)
{
$xmlStr=str_replace('<','<',$htmlStr);
$xmlStr=str_replace('>','>',$xmlStr);
$xmlStr=str_replace('"','"',$xmlStr);
$xmlStr=str_replace("'",''',$xmlStr);
$xmlStr=str_replace("&",'&',$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 location 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)){
// ADD TO XML DOCUMENT NODE
echo '<marker>';
echo '<name>' . parseToXML($row['name']) . '</name>';
echo '<address>' . parseToXML($row['address']) . '</address>';
echo '<latitude>' . $row['latitude'] . '</latitude>';
echo '<longitude>' . $row['longitude'] . '</longitude>';
echo '<description>' . $row['description'] . '</description>';
echo '<time>' . $row['time'] . '</time>';
echo '</marker>';
}
// End XML file
echo '</markers>';
?>
問題が何であるかはわかりませんが、すべての文字エンコード(mysqlおよびhtaccessの下)をUTF8に変更しました。最近、ホストによるサーバーのメンテナンス後に問題が発生し、その前後でファイルを変更しなかったため、コード自体に問題があるのではないかと思います。誰かが私を正しい方向に向けることができますか?前もって感謝します!