isaac_cm Posted December 17, 2006 Share Posted December 17, 2006 I read about this new technology in sharing news from web sites , but I did not understand any thing ???I call the freaks of this forum to tell me simple concept about this RSS , what befits I will get if I put it in my site and how to do it ;)thanks guys Quote Link to comment https://forums.phpfreaks.com/topic/31006-rss-feed/ Share on other sites More sharing options...
fert Posted December 17, 2006 Share Posted December 17, 2006 RSS is site syndication it is usually used by site to give users links to content an RSS 2.0 file follows this syntax[quote]<?xml version="1.0"?><rss version="2.0"> <channel> <title>Liftoff News</title> <link>http://liftoff.msfc.nasa.gov/</link> <description>Liftoff to Space Exploration.</description> <language>en-us</language> <pubDate>Tue, 10 Jun 2003 04:00:00 GMT</pubDate> <lastBuildDate>Tue, 10 Jun 2003 09:41:01 GMT</lastBuildDate> <docs>http://blogs.law.harvard.edu/tech/rss</docs> <generator>Weblog Editor 2.0</generator> <managingEditor>[email protected]</managingEditor> <webMaster>[email protected]</webMaster> <item> <title>Star City</title> <link>http://liftoff.msfc.nasa.gov/news/2003/news-starcity.asp</link> <description>How do Americans get ready to work with Russians aboard the International Space Station? They take a crash course in culture, language and protocol at Russia's Star City.</description> <pubDate>Tue, 03 Jun 2003 09:39:21 GMT</pubDate> <guid>http://liftoff.msfc.nasa.gov/2003/06/03.html#item573</guid> </item> <item> <title>Space Exploration</title> <link>http://liftoff.msfc.nasa.gov/</link> <description>Sky watchers in Europe, Asia, and parts of Alaska and Canada will experience a partial eclipse of the Sun on Saturday, May 31st.</description> <pubDate>Fri, 30 May 2003 11:06:42 GMT</pubDate> <guid>http://liftoff.msfc.nasa.gov/2003/05/30.html#item572</guid> </item> <item> <title>The Engine That Does More</title> <link>http://liftoff.msfc.nasa.gov/news/2003/news-VASIMR.asp</link> <description>Before man travels to Mars, NASA hopes to design new engines that will let us fly through the Solar System more quickly. The proposed VASIMR engine would do that.</description> <pubDate>Tue, 27 May 2003 08:37:32 GMT</pubDate> <guid>http://liftoff.msfc.nasa.gov/2003/05/27.html#item571</guid> </item> <item> <title>Astronauts' Dirty Laundry</title> <link>http://liftoff.msfc.nasa.gov/news/2003/news-laundry.asp</link> <description>Compared to earlier spacecraft, the International Space Station has many luxuries, but laundry facilities are not one of them. Instead, astronauts have other options.</description> <pubDate>Tue, 20 May 2003 08:56:02 GMT</pubDate> <guid>http://liftoff.msfc.nasa.gov/2003/05/20.html#item570</guid> </item> </channel></rss>[/quote] Quote Link to comment https://forums.phpfreaks.com/topic/31006-rss-feed/#findComment-143096 Share on other sites More sharing options...
isaac_cm Posted December 17, 2006 Author Share Posted December 17, 2006 do I have to use all this file to implement RSS in my site, could it be used to add my site in the favorites list of visitor browser, please explain howthanks Quote Link to comment https://forums.phpfreaks.com/topic/31006-rss-feed/#findComment-143104 Share on other sites More sharing options...
fert Posted December 17, 2006 Share Posted December 17, 2006 an RSS file only needs this to work[quote]<?xml version="1.0"?><rss version="2.0"> <channel> <title>RSS title</title> <link>Lin to site</link> <description>description</description> <language>en-us</language> <pubDate>Publishing date</pubDate> <lastBuildDate>Build date</lastBuildDate> <item> <title>Title</title> <link>link to article</link> <description>Description</description> <pubDate>Publishing date</pubDate> </item> </channel></rss>[/quote] Quote Link to comment https://forums.phpfreaks.com/topic/31006-rss-feed/#findComment-143110 Share on other sites More sharing options...
Daniel0 Posted December 17, 2006 Share Posted December 17, 2006 You may read more about RSS here: http://w3schools.com/rss/default.asp and here: http://en.wikipedia.org/wiki/RSS Quote Link to comment https://forums.phpfreaks.com/topic/31006-rss-feed/#findComment-143115 Share on other sites More sharing options...
isaac_cm Posted December 18, 2006 Author Share Posted December 18, 2006 many thanks Quote Link to comment https://forums.phpfreaks.com/topic/31006-rss-feed/#findComment-143539 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.