Here is a basic tutorial on how to write RSS feeds for your websites.
I'm going to use images to show what different code does.
Start by making an empty file called rss.xml in your favourite text editor.
Just like with html, You need to declare your doctype, Paste this code to the top of your .xml file.
Now you need to add a channel, A channel is basically a feed.
You need to paste
Paste
You should have this so far.

Now, Your RSS file needs a title. This is what the feed will be called in feedburner, Or what ever RSS reader your users prefer. The title would usually be the websites title. Your pages titles will be wrote a little later on.
Add
Now you need a link to that title, The title will be a hyperlink to your site also. So put your home page's link there, Your link goes directly below your feed title.
Ok, Now we're ready to add some stuff.
Each page you want to list in your RSS feed is called an item. They are made up of several elements. A title, a published date, a link and a description.
Makes sense ay?
These elements look like this
You now should have this.

So for each item you'd repeat the last code snippet. The full RSS.xml file with 3 syndicated pages in it would look like this.

That code will produce this page, When viewed in an RSS reader. Different readers will display your feed slightly differently. This is the default Feedburner view, Using the above code.

If your unsure of anything i've wrote here, Or have a question about it. Post your question below.
Good Luck!
I'm going to use images to show what different code does.
Start by making an empty file called rss.xml in your favourite text editor.
Just like with html, You need to declare your doctype, Paste this code to the top of your .xml file.
Code: [Select]
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
That is your doctype declaration sorted.Now you need to add a channel, A channel is basically a feed.
You need to paste
Code: [Select]
<channel>
right below your doctype.Paste
Code: [Select]
</channel></rss> at the bottom of your page.You should have this so far.
Now, Your RSS file needs a title. This is what the feed will be called in feedburner, Or what ever RSS reader your users prefer. The title would usually be the websites title. Your pages titles will be wrote a little later on.
Add
Code: [Select]
<title>geekimo.comLatest Software Updates!</title>right after your channel code.Now you need a link to that title, The title will be a hyperlink to your site also. So put your home page's link there, Your link goes directly below your feed title.
Code: [Select]
<link>http://geekimo.com</link>Now a description, motto, or catchphrase of your site, a short snappy sentence to summarise your whole site.Code: [Select]
<description>All the latest Software all available to download, quickly & Safely.</description>
Ok, Now we're ready to add some stuff.
Each page you want to list in your RSS feed is called an item. They are made up of several elements. A title, a published date, a link and a description.
Makes sense ay?
These elements look like this
Code: [Select]
<item>
<title>AVG Anti-Virus Free Edition 8.0.169</title>
<link>http://i-conica.net/download/antivirus/avg-av/avg-av.htm</link>
<pubDate>Fri, 29 Aug 2008</pubDate>
<description>AVG Free is the most popular free solution available at no cost
to home users and provides the high level of detection capability
that millions of users around the world trust to protect their
computers. Known globally as the best free anti-virus protection and
even better than all or most paid product. AVG has been the choice
of all computer techs/geeks for years.</description>
</item>
Each page you wish to syndicate, needs to have all those elements each. So paste that code over and over and change the necessary parts.You now should have this.

So for each item you'd repeat the last code snippet. The full RSS.xml file with 3 syndicated pages in it would look like this.

That code will produce this page, When viewed in an RSS reader. Different readers will display your feed slightly differently. This is the default Feedburner view, Using the above code.

If your unsure of anything i've wrote here, Or have a question about it. Post your question below.
Good Luck!


Logged
looks like your diggin works i-CONICA. Lol^^^