Integrating RSS

Get help with installation and running phpwcms here. Please do not post bug reports or feature requests here.
Post Reply
slinkyomeara
Posts: 24
Joined: Tue 16. Sep 2008, 03:26

Integrating RSS

Post by slinkyomeara »

Hello,
i would like to integrate RSS into my site
My proposal is this:
To modify a content template to be designed around the XML rss standard.

example:

<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">

<channel>
<title>The title of my RSS 2.0 Feed</title>
<link>http://www.example.com/</link>
<description>News</description>
<lastBuildDate>Mon, 12 Sep 2005 18:37:00 GMT</lastBuildDate>
<language>en-us</language>

<item>

<title> [article summary] </title>

<link>http://example.com/item/123</link>
<guid>http://example.com/item/123</guid>
<pubDate>Mon, 12 Sep 2005 18:37:00 GMT</pubDate>
<description>[CDATA[ This is the description. ]]</description>
</item>
<!-- put more items here -->

</channel>
</rss>
Post Reply