I managed to create the XML file of the feeds:
<?xml version=“1.0” encoding=“utf-8”?>
<rss version=“0.91”>
<channel>
<title>Testing XML</title>
<link>http://www.test.co.uk</link>
<description>Displaying my Feeds
</description>
<language>en-us</language>
<item>
<title>Watchdog orders phone-ins review</title>
<link>http://www.test.co.uk</link>
<description>
My description goes right here…
</description>
</item>
<item>
<title>ITV admits X Factor vote mistake</title>
<link>http://www.test.co.uk</link>
<description>
My description goes right here…
</description>
</item>
</channel>
</rss>
I want to get the data from the XML into my website as articles. Any ideas?