0

我有一个显示 RSS 提要的代码,但它不会显示主要内容。

 <?PHP
 include("../config.php");
 #// Timetable Clearup Variabls
$yesterday = strtotime('yesterday');
$yesterdow = date('l',$yesterday);
$order = "SELECT * FROM timetable WHERE day = '$yesterdow' ORDER BY time";
$result = mysql_query($order);
$yesterdayd = date('F jS, Y', time()-86400);

    //SET XML HEADER
    header('Content-type: text/xml');

    //CONSTRUCT RSS FEED HEADERS
    $output = '<rss version="2.0">';
    $output .= '<channel>';
    $output .= "<title>Timetable - {$yesterdayd} </title>";
    $output .= '<description>Timetable.</description>';
    $output .= '<link>http://example.com/</link>';
 ###   $output .= '<copyright>Your copyright details</copyright>';

    //BODY OF RSS FEED
   $output .= '<item>';
        $output .= "<title>Timetable for $yesterdayd</title>";
        $output .= "<description><td>" . htmlspecialchars($row['username']) . "</td><td>" . htmlspecialchars($row['time']) . "</td></description>";
        $output .= '<link>Link to Item</link>';
        $output .= '<pubDate>Date Published</pubDate>';
   $output .= '</item> ';

    //CLOSE RSS FEED
   $output .= '</channel>';
   $output .= '</rss>';

    //SEND COMPLETE RSS FEED TO BROWSER
    echo($output);

?>

我遇到的问题是:

 $output .= "<description><td>" . htmlspecialchars($row['username']) . "</td><td>" . htmlspecialchars($row['time']) . "</td></description>";

我基本上需要将每一行的数据输出到提要中。

这是我可以正常执行的方法(放入表格,这是我想要的格式):

<?php 
include("../config.php");

#// Timetable Clearup Variabls
$yesterday = strtotime('yesterday');
$yesterdow = date('l',$yesterday);

echo "<table width=\"580px\" class=\"board\" border=\>";

$order = "SELECT * FROM timetable WHERE day = '$yesterdow' ORDER BY time";
$result = mysql_query($order);

// Error checking
if (!$result) {
  // output error, take other action
}
else {
  while ($row=mysql_fetch_array($result)){
     // Append all results onto an array
     $rowset[] = $row;
       echo "<tr><td>" . htmlspecialchars($row['username']) . "</td><td>" . htmlspecialchars($row['time']) . "</td></tr>";
  }
}





?> 
4

1 回答 1

0

你是什​​么意思你想在表格中显示rss?您要创建 HTML 还是 RSS (XML)?或者,也许您正在谈论将 RSS 转换为 HTML 显示?一种方法是为此使用XSLT

在您的 RSS 生成脚本中,您没有$row为每个提要项目定义一个变量。您只需要while($row = mysql_fetch_array($result))在 rss 项目输出周围放置 - 如下所示:

while ($row = mysql_fetch_array($result)) {
    $output .= '<item>';
    $output .= "<title>Timetable for $yesterdayd</title>";
    $output .= "<description><td>" . htmlspecialchars($row['username']) . "</td><td>" . htmlspecialchars($row['time']) . "</td></description>";
    $output .= '<link>Link to Item</link>';
    $output .= '<pubDate>Date Published</pubDate>';
    $output .= '</item>';
}

编辑:重新检查您的代码:您还需要分解description标签中的字段。您不应该td在其中放置标签 - RSS 元素(通常)并不意味着包含 HTML 标记数据。

像这样的东西(如果这个意思有意义的话):

$output = "<description>
    <username>" . htmlspecialchars($row['username']) . "</username>
    <time>" .     htmlspecialchars($row['time']) . "</time>
</description>";
于 2012-04-11T20:19:57.387 回答