RSS Tutorial
RSS Tutorial
RSS feeds are very simple to make, and handy for any fans of yours. Basically what RSS is used for, is to download information to a device such as an PDA or iPod, and provide you with information, updates, or whatever. When the feed is upadted, software can automatically save you feed to the receiver's device. You can learn more about RSS here
To create an RSS item you need three things, a Title,Decscription,and a Link. So here is an example. MY TITLE: GOING ON A TRIP MY DESCRIPTION: On June 19 I will be gone for one week on a trip to Kenya. I'll tell you about my trip when I get back. MY LINK: http://mywebsite.com/rss/mytrip.html . Now we need to put that in a valid XML format. On June 19 I will be gone for one week on a trip to Kenya. I'll tell you about my trip when I get back. http://mywebsite.com/rss/mytrip.html. Now we want to tell XML that we want to create an item so we say: On June 19 I will be gone for one week on a trip to Kenya. I'll tell you about my trip when I get back. http://mywebsite.com/rss/mytrip.html
You can add as many items as you want. Now as in all languages you need a header and footer. the header in this case is
<rss version="2.0">
So you insert all that information into a document and save it with a .xml extension(ex mytriprss.xml). Now you post a link to you .xml file on your website and you are ready to go!
ghost 19 years ago
view the page souce to actually understand the tutorial. All the XML tags are gone when viewing it normally
ghost 19 years ago
RSS feeds are very simple to make, and handy for any fans of yours. Basically what RSS is used for, is to download information to a device such as an PDA or iPod, and provide you with information, updates, or whatever. When the feed is upadted, software can automatically save you feed to the receiver's device. You can learn more about RSS <a href=http://blogs.law.harvard.edu/tech/rss>here</a><br /> <br /> To create an RSS item you need three things, a Title,Decscription,and a Link. So here is an example. MY TITLE: GOING ON A TRIP MY DESCRIPTION: On June 19 I will be gone for one week on a trip to Kenya. I'll tell you about my trip when I get back. MY LINK: http://mywebsite.com/rss/mytrip.html . Now we need to put that in a valid XML format.<br /> On June 19 I will be gone for one week on a trip to Kenya. I'll tell you about my trip when I get back. http://mywebsite.com/rss/mytrip.html. Now we want to tell XML that we want to create an item so we say:<br />
On June 19 I will be gone for one week on a trip to Kenya. I'll tell you about my trip when I get back. http://mywebsite.com/rss/mytrip.html<br /> <br /> You can add as many items as you want. Now as in all languages you need a header and footer. the header in this case is<br /> <?xml version="1.0" ?><br /> <rss version="2.0"><br /> <br /> <channel><br /> <br /> <title>GOING ON A TRIP;/title><br /> <description>On June 19 I will be gone for one week on a trip to Kenya. I'll tell you about my trip when I get back.</description><br /> <link>http://mywebsite.com/rss/mytrip.html</link><br /> <br />
</channel><br /> <br /> </rss><br /> <br /> So you insert all that information into a docu<i></i>ment and save it with a .xml extension(ex mytriprss.xml). Now you post a link to you .xml file on your website and you are ready to go! </td>