从数据库获取RSS作为XML文件时出错

时间:2015-07-14 05:14:01

标签: php mysql xml rss

从数据库获取rs时出错 我想在xml文件中获取数据。

我想将mysql中的数据带到rss xml文件中显示。 我认为xml代码中的问题在这个文件中: 请注意,000正在更改index.xml

<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>000</title>
<link>http://000.com/</link>
<description>000</description>
<language>ar-ye</language>
<copyright>000</copyright>
<pubpubDate>Mon, 09 Mar 2015 16:22:58 PDT</pubpubDate>
<lastBuildpubDate>Mon, 09 Mar 2015 16:22:58 PDT</lastBuildpubDate>
<category>000</category>
<generator>In house</generator>
<docs>000</docs>
<?php
    $url = "http://000.com";
?>
<!-- Start While with 80 news items -->
<?php
<?php
  ini_set('default_charset','UTF-8'); 
$host = '000';
$username= '000';
$password='000';
$database = '000';

$con = mysqli_connect($host,$username,$password,$database) or die("Database connection failer");
$sSQL= 'SET CHARACTER SET utf8'; 

mysqli_query($con,$sSQL) 
or die ('Can\'t charset in DataBase'); 
    $query = mysql_query("SEELCT `id,text,date` FROM `$htmlpages` WHERE `id`='5' ORDER BY `id` DESC LIMIT 80");
    while($results = mysql_fetch_array())
    {
?>
    <item>
        <id><!-- News ID --></id>
        <proirity><!-- 1=Yes   0=No --></proirity> <!-- Show in the Main Home Box or NOT -->
        <title><!-- News Title --></title>
        <content><!-- News Details - Full Text --></content>
        <image><?=$url?>/<!-- News Image - Directory and Image file name --></image>
        <image_thumb><?=$url?>/<!-- News Image - Directory and Thumb file name --></image_thumb>
        <image_description><!-- Image Description --></image_description>
        <category><!-- News Category Name --></category>
        <link><!-- News URL --></link>
        <pubDate><!-- News Date --></pubDate>
        <author><!-- News Author Name --></author>
    </item>
<?php
    }
?>
<!-- End -->

</channel>
</rss>

我收到以下错误:

  

此页面包含以下错误:        第18行第40行的错误:xmlParsePI:没有目标名称        下面是第一个错误之前的页面呈现。        Almasdar Online http://000.com/最新消息由000.com提供ar-ye

     

Copyright 2015,000 Inc. Inc. 2015年3月9日星期一16:22:58 PDT星期一,2015年3月9日
       16:22:58 PDT Index - 000 In house http://blogs.law.harvard.edu/tech/rss/

请尽快帮助谢谢。

0 个答案:

没有答案