How to Make an Rss Feed
By: sedhai • Essay • 254 Words • April 22, 2011 • 1,423 Views
How to Make an Rss Feed
RSS feeds contain what are referred to as "items". The items are usually connected in some way and contain a common theme or other similarity.
The following feed http://www.notepage.net/feed.xml contains items. The items are all SMS and paging related news articles that would likely benefit someone interested in the wireless market.
Each item contains:
title
description
link
The title and description should be written to describe the content and the link should reference the webpage that contains that actual content.
Like html, the xml file uses open and close tags to designate the title, description and link. Tags are enclosed in brackets <>, like standard html and the close tag contains a forward slash /.
As I mentioned earlier, an RSS feeds contains items and like the tags above, an open and close tag is used to distinguish between items.
<item>
<title>The Title Goes Here</title>
<description>The description goes here</description>
<link>http://www.linkgoeshere.com</link>
</item>
<item>
<title>Another Title Goes Here</title>
<description>Another description goes here</description>
<link>http://www.anotherlinkgoeshere.com</link>
</item>
Now an RSS Feed is a series of items, these items are chained together to create what is called a "Channel".
The Channel appears at the top of the file and tells people how the items relate to each other. Like items channels use title, description and link tags