Hiya, I have a table within a database containing two fields: newsTitle and newsDescription. How do you insert the contents of these to fields into a RSS Feed, and track how many people have subscribed? Many Thanks, FishSword
The easiest way to create an RSS file is to use a pre written class. I just found one here www.phpclasses.org/browse/package/2569.html although there are many. It's also fairly easy to do yourself. Outputing to RSS is similare to outputing to html. You just need to get familar with the structure of an RSS file. Finally, to track subscriptions you should use feedburner.com It's a free service from google that gives stats on rss feeds.
Can you give me an example, on how you would use the following class, in order to display the two fields from the database inside a RSS Feed? http://www.phpclasses.org/browse/package/2569.html