You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-webdb/www/rss.php

28 lines
1.0 KiB
PHP

<? header("location: http://blog.CAcert.org/feed/"); exit; ?>
<? /* <author>$row['who'] &lt;nomail@nospam.sss&gt;</author> */ ?>
<? header("Content-Type: application/xml");
?><<?="?"?>xml version="1.0" encoding="UTF-8" <?="?"?>>
<rss version="2.0">
<channel>
<title>CAcert.org NEWS!</title>
<link>http://www.CAcert.org/</link>
<copyright>Copyright &#169; 2002-present, CAcert Inc.</copyright>
<description>News feed for CAcert.org</description>
<pubDate><?=date("D, d M Y H:i:s O")?></pubDate>
<lastBuildDate><?=date("D, d M Y H:i:s O")?></lastBuildDate>
<ttl>3600</ttl><?
$query = "select *, UNIX_TIMESTAMP(`when`) as `TS` from news order by `when` desc limit 10";
$res = mysql_query($query);
while($row = mysql_fetch_assoc($res))
{ ?>
<item>
<title><?=strip_tags($row['short'])?></title>
<description><?=strip_tags($row['story'])?></description>
<link>http://www.cacert.org/news.php?from=rss&amp;id=<?=$row['id']?></link>
<pubDate><?=date("D, d M Y H:i:s O", $row['TS'])?></pubDate>
</item>
<? } ?>
</channel>
</rss>