第1列第1行出错;文件是空的?

时间:2018-03-23 11:31:46

标签: php sql xampp

我正在尝试使用SQL数据库中的数据输出XML文件。我一直收到错误“第1行第1列错误:文档为空......”

我已经查看了类似的问题和解决方案状态以移动

header('Content-type: text/xml');
在其他任何事情之前到文件的顶部。我现在已经做了 - 但我仍然得到错误。

有人可以看到我出错的地方吗?

<?php
header('Content-type: text/xml');

require("config.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;
}


$sql = "SELECT * FROM markers;";
$result = mysqli_query($connection, $sql);
$resultCheck = mysqli_num_rows($result);

echo "test1 \n\n";
echo "<?xml version='1.0' ?>";
echo '<markers>';
echo "test2 \n\n";

if($resultCheck > 0) {
		while($row = mysqli_fetch_assoc($result)){
			echo $row['id'] . "<br>";
			echo $row['name'] . "<br>";
			echo $row['address'] . "<br>";
			echo $row['lat'] . "<br>";
			echo $row['lng'] . "<br>";
			echo $row['type'] . "<br>";
		}
	}
echo "test3 \n\n";
// Start XML file, echo parent node

$ind=0;
// Iterate through the rows, printing XML nodes for each
while ($row = @mysqli_fetch_assoc($result)){
  // Add to XML document node
  echo '<marker ';
  echo 'id="' . $row['id'] . '" ';
  echo 'name="' . parseToXML($row['name']) . '" ';
  echo 'address="' . parseToXML($row['address']) . '" ';
  echo 'lat="' . $row['lat'] . '" ';
  echo 'lng="' . $row['lng'] . '" ';
  echo 'type="' . $row['type'] . '" ';
  echo '/>';
  $ind = $ind + 1;
}

//End XML file
echo '</markers>';



?>

注意 - 我与数据库专线创建的连接

$connection

在我的配置文件中。

注意 - 我正在通过代码进行测试,因此有些是随机测试语句在这里和那里注释掉的,我只是无法找到错误的原因!

0 个答案:

没有答案