We Recommend

Beginning XML Beginning XML
The perfect resource for beginning XML programmers, this guidebook shows you what XML is, how to use it, and what technologies surround it. The authors build on the strengths of previous editions while covering the latest changes in the XML landscape such as XQuery, RSS and Atom, and Ajax.


Posted By

rengber on 02/13/08


Tagged

rss web


Versions (?)


Baseline RSS XML


Published in: XML 


URL: http://www.4guysfromrolla.com/webtech/031303-1.shtml

From 4 Guys from Rolla


  1. <?xml version="1.0" ?>
  2. <rss version="2.0">
  3. <channel>
  4. <title>This is my first RSS feed!</title>
  5. <link>http://www.myWebSite.com</link>
  6. <description>I am testing out creating an RSS feed...</description>
  7.  
  8. <item>
  9. <title>The First Item to Check Out</title>
  10. <link>http://www.myWebSite.com/story1.htm</link>
  11. <description>This is the first article on my Web site!</description>
  12. </item>
  13.  
  14. <item>
  15. <title>The Second Item to Check Out</title>
  16. <link>http://www.myWebSite.com/story1.htm</link>
  17. <description>This is the second article on my Web site!</description>
  18. </item>
  19.  
  20. ...
  21. </channel>
  22. </rss>

Report this snippet 

You need to login to post a comment.