Archives
Recent posts
Recent comments
- In RSS Feeds, Fast and Easy
- Kaos wrote: Can Cake also be used then to simplify displaying xml feeds on websites? Just learned of cake...
- In RSS Feeds, Fast and Easy
- Werner Hartnagel wrote: Thanks for the Tuturial, it was a great help. /views/entries/rss/index.ctp should add the...
- In RSS Feeds, Fast and Easy
- Jon wrote: @p1nk g33k: CakePHP is a framework based in PHP. Short answer, yes. This might help:...
- In RSS Feeds, Fast and Easy
- p1nk g33k wrote: Can you use CakePHP with regular PHP? Is it more lightweight than regular PHP? I would use...
Categories
Words of Wisdom from
-
RSS Feeds, Fast and Easy
December 25 2008 | | CakePHP
For my first entry, I am going to talk about how to create an RSS Feed on your website. RSS (Really Simple Syndication) is a format used to publish frequently updated works such as blogs or featured products. RSS defines a set of XML elements that are used to describe a channel or feed of information. An RSS feed is comprised of two parts, first is the metadata describing the channel and second is the records that make up the elements of the feed. RSS feeds allow your sites visitors to access the information on your site using software that reads these feeds. This will allow your site's visitors to stay up-to-date on the information on your site. CakePHP allows for easy integration of RSS feeds into existing controller actions through the automatic router extension parsing. This allows us to specify what type of response we want from a URL through adding the proper extension to the U...[ Read More | 7 Comments ]