01-21-2009, 03:31 PM
|
#1 (permalink)
|
|
The Acquainted
Join Date: Jan 2008
Posts: 119
Thanks: 21
|
Parse XML categories and create RSS feed out of it...
Hello all,
So I am thinking of having an XML file that contains a few different categories. Is there a way to use php to create the RSS feed for each different category?
For example:
Code:
<items>
<item>
<title></title>
<description></description>
<link></link>
<pubDate></pubDate>
<category>Fire</category>
</item>
<item>
<title></title>
<description></description>
<link></link>
<pubDate></pubDate>
<category>Recreation</category>
</item>
</items>
One RSS feed for Fire, One for Recreation, parsed from the same XML file.
Then link to it like: rss.xml for the feed readers.
Thanks!
|
|
|
|