" />

RSS Feed 无法工作:

发布于 2024-11-27 18:19:28 字数 1086 浏览 0 评论 0 原文

我一直在编写一个简单的 PHP 脚本,该脚本应该生成 RSS Feed,从 MySQL 数据库中提取数据。

<?php
require("$_SERVER[DOCUMENT_ROOT]mysql.php");
$type = $_GET["type"];
$result = mysql_query("SELECT * FROM Setting WHERE Type = \"$type\"");
header("Content-Type: text/xml");
echo "
<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>
<rss version=\"2.0\">
  <channel>
    <title>Vhannibal &ndash; I migliori setting per Dreambox! &ndash; Feed RSS</title>
    <link>http://www.vhannibal.net/</link>
    <description>".$type."</description>
";
while ($row = mysql_fetch_array($result))
{
    extract($row);
    echo "
    <item>
      <title>$row[Name]</title>
      <link>http://www.vhannibal.net/download_setting.php?id=$row[ID]</link>
      <description>".strftime("%e %b", $row["Date"])."</description>
    </item>
  </channel>
</rss>
";
}
?>

问题是 出现在 PHP 脚本生成的不需要的空行之后,我认为这就是它的原因不起作用。我说得对吗?我该如何解决?谢谢。

I've been writing a simple PHP script which is supposed to generate a RSS Feed extracting data from a MySQL database.

<?php
require("$_SERVER[DOCUMENT_ROOT]mysql.php");
$type = $_GET["type"];
$result = mysql_query("SELECT * FROM Setting WHERE Type = \"$type\"");
header("Content-Type: text/xml");
echo "
<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>
<rss version=\"2.0\">
  <channel>
    <title>Vhannibal – I migliori setting per Dreambox! – Feed RSS</title>
    <link>http://www.vhannibal.net/</link>
    <description>".$type."</description>
";
while ($row = mysql_fetch_array($result))
{
    extract($row);
    echo "
    <item>
      <title>$row[Name]</title>
      <link>http://www.vhannibal.net/download_setting.php?id=$row[ID]</link>
      <description>".strftime("%e %b", $row["Date"])."</description>
    </item>
  </channel>
</rss>
";
}
?>

The problem is <?xml version="1.0" encoding="iso-8859-1"?> comes after an unwanted empty line generated by the PHP script which I think is the reason why it doesn't work. Am I right? How can I solve it? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ぶ宁プ宁ぶ 2024-12-04 18:19:28

您的问题是 title 元素中的 实体在 xml 中无效(它是 html 定义的实体);只需使用“-”或使用十进制版本:

另外,您需要将 channelrss 结束标记放在 while 循环之外。

要删除第一个空行,只需替换

   echo "
    <?xml version="1.0" encoding="iso-8859-1"?>
    [...]

   echo "<?xml version="1.0" encoding="iso-8859-1"?>
   [...]

Your problem is the entity in the title element which is not valid in xml (it's an html defined entity); just use "-" or use the decimal version: .

Also, you need to put the channel and rss end tags outside of the while cycle.

To get rid of the first blank line, just replace

   echo "
    <?xml version="1.0" encoding="iso-8859-1"?>
    [...]

with

   echo "<?xml version="1.0" encoding="iso-8859-1"?>
   [...]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文