How do I create my own xml feed?

Associate
Joined
20 May 2007
Posts
441
Hey guys

I was just wondering how I add an xml feed on my site similar to the one on this site http://www.enidweb.com/searchword/.

I have no idea how an xml feed works and all the sites I go to dont really help to explain anything in simple terms.

Any advice or good tutorials *** be awesome.

Thanks in advance
Gaunt
 
create an xml file,

here is theirs

Code:
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<atom:link href="http://www.enidweb.com/searchword/rss.xml" rel="self" type="application/rss+xml" />
<title>SearchWord</title>
<link>http://www.enidweb.com/searchword</link>
<description>SearchWord News</description>
<lastBuildDate>Wed, 28 Nov 2007 18:58:00 GMT</lastBuildDate>
<language>en-gb</language>
 
<item>
<title>Website Testing</title>
<link>http://www.enidweb.com/searchword/#1</link>
<guid isPermaLink="true">http://www.enidweb.com/searchword/#1</guid>
<pubDate>Tue, 27 Nov 2007 17:57:00 GMT</pubDate>
<description>
Testing...
</description>
</item>

<item>
<title>Beta Testing</title>
<link>http://www.enidweb.com/searchword/#2</link>
<guid isPermaLink="true">http://www.enidweb.com/searchword/#2</guid>
<pubDate>Wed, 28 Nov 2007 18:58:00 GMT</pubDate>
<description>
The new website is now online as you can see. 
Please email me any feedback ASAP. 
Thanks!
</description>
</item>

<item>
<title>Site Improvements</title>
<link>http://www.enidweb.com/searchword/#3</link>
<guid isPermaLink="true">http://www.enidweb.com/searchword/#3</guid>
<pubDate>Wed, 5 Mar 2008 18:00:00 GMT</pubDate>
<description>
There has been some big changes to the site, so come check them out. If you wish to receive any updates about our software please subscribe to our new RSS feed.
</description>
</item>

<item>
<title>Initial Screenshots</title>
<link>http://www.enidweb.com/searchword/screenshots.htm#4</link>
<guid isPermaLink="true">http://www.enidweb.com/searchword/#4</guid>
<pubDate>Thu, 6 Mar 2008 10:15:00 GMT</pubDate>
<description>
We have added some new screenshots of our release.
</description>
</item>
<item>
<title>Links</title>
<link>http://www.enidweb.com/searchword/#5</link>
<guid isPermaLink="true">http://www.enidweb.com/searchword/#5</guid>
<pubDate>Fri, 28 Mar 2008 16:46:00 GMT</pubDate>
<description>
While browsing the net I cam across www.goodforyourbrain.org which provides some details of a study that Alzheimer Scotland preformed thats shows playing small puzzle games may lower the risk of Alzheimers disease. Also check out the Wikipedia on Word Searchs for tips and strategies on playing word searches.
</description>
</item>

<item>
<title>Where We Are Now</title>
<link>http://www.enidweb.com/searchword/#6</link>
<guid isPermaLink="true">http://www.enidweb.com/searchword/#6</guid>
<pubDate>Sun, 13 Apr 2008 09:59:00 GMT</pubDate>
<description>
We are now coming close to finishing off the software that will be submitted as our University project and therefore you will soon see the publication of a user manual, FAQ and the first version of our software! Another piece of news is that we have decided to carry on the project in the summer, after our exams. We have are fairly good idea of even more features that we wish to include and which can also be combined with any ideas you have. Stay tuned!
</description>
</item>

</channel>
</rss>

There is all sorts of software to do it automatically
 
Back
Top Bottom