how to display RSS feeds as HTML? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T17:54:08Zhttp://stackoverflow.com/feeds/question/98308http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html1how to display RSS feeds as HTML?Gastoni2008-09-19T00:23:46Z2009-10-08T10:44:31Z
<p>How do I display a News RSS feeds from a web site into another web site?</p>
<p>I don't need to program or process anything, just take the information from one place and display it in the other.</p>
<p>Probably I want this to be done on the client side, So I guess it would need to be a javascript solution.</p>
http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98319#983190Answer by Clint Ecker for how to display RSS feeds as HTML?Clint Ecker2008-09-19T00:25:20Z2008-09-19T00:25:20Z<p>It depends on if you want to do it server side, client-side (javascript), in some sort of widget, et cetera. Your question really isn't detailed enough to give a good answer.</p>
http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98321#983210Answer by Joel Coehoorn for how to display RSS feeds as HTML?Joel Coehoorn2008-09-19T00:25:29Z2008-09-19T00:25:29Z<p>It depends on what your programming environment is. I know you can some nice controls to handle it all for you in ASP.Net, for example, and I'm sure other environments have their way to do it. An XML Style Sheet would work pretty well, too.</p>
http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98324#983240Answer by mopoke for how to display RSS feeds as HTML?mopoke2008-09-19T00:25:59Z2008-09-19T00:25:59Z<p>Depends what language your website is written in. There are tools for PHP to consume RSS and display them as HTML. There are likely modules for most popular languages.</p>
<p>Or if you want a client-side solution, you could try a JavaScript tool such as <a href="http://www.rss-to-javascript.com/" rel="nofollow">http://www.rss-to-javascript.com/</a></p>
http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98325#983250Answer by Dan for how to display RSS feeds as HTML?Dan2008-09-19T00:26:03Z2008-09-19T00:26:03Z<p>Depends what language you're using. Typically you'd find yourself a prebuild RSS parser to do the hard work for you, but if there's nothing available, it'd be pretty easy to roll your own with an XML parser.</p>
<p>(Now, if there's no XML parser available, you may have a bit of work ahead of you :))</p>
http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98327#983277Answer by Eric Lathrop for how to display RSS feeds as HTML?Eric Lathrop2008-09-19T00:26:56Z2008-09-19T00:26:56Z<p>You can use XSLT to translate the RSS to HTML:
<a href="http://www.dotnetjunkies.ddj.com/Tutorial/9FB56D07-4052-458C-B247-37C9E4B6D719.dcik" rel="nofollow">Translating RSS With XSLT</a></p>
http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98328#983280Answer by ConroyP for how to display RSS feeds as HTML?ConroyP2008-09-19T00:26:57Z2008-09-19T00:32:27Z<p>You can do it server-side, by fetching the feed, parsing it yourself and outputting whichever you'd like. This can be done using <a href="http://www.iredale.net/p/by-permalink/44F4CFBC-EACB-11DC-88B7-4DEB6225452B/" rel="nofollow">XSLT</a>, or if you really want to have some fun, you could read the file in, process it in your dev language of choice (<a href="http://magpierss.sourceforge.net/" rel="nofollow">MagpieRSS</a> is good for this in PHP), and treat it the same way you would regular site content.</p>
<p>Alternatively, you can do it client-side with some javascript - you can even get <a href="http://www.labnol.org/internet/tools/embed-rss-feeds-add-html-websites-javascript/2515/" rel="nofollow">Google gadgets to do all of the work for you</a>!</p>
http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98330#983301Answer by Nouveau for how to display RSS feeds as HTML?Nouveau2008-09-19T00:27:11Z2008-09-19T00:27:11Z<p>Depending on the language you're working in, either with an XLST transformation or by writing your own code looping over the RSS and creating HTML.</p>
http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98332#983321Answer by Glenn Slaven for how to display RSS feeds as HTML?Glenn Slaven2008-09-19T00:27:29Z2008-09-19T00:27:29Z<p><a href="http://www.decafbad.com/twiki/bin/view/Main/RssDisplay" rel="nofollow">RSSDisplay</a> does it in perl. Not sure if that's the sort of thing you're after. Alternatively you can <a href="http://www.dotnetjunkies.ddj.com/Tutorial/9FB56D07-4052-458C-B247-37C9E4B6D719.dcik" rel="nofollow">do it with XSLT</a> if you roll that way</p>
http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98335#983350Answer by jjohn for how to display RSS feeds as HTML?jjohn2008-09-19T00:28:09Z2008-09-19T00:28:09Z<p>Do you need to program a solution? Which programming languages do you know? Perl can do this pretty efficiently with XML::RSS. You can also do this with XSLT processing if you want to stay firmly in the XML/HTML camp.</p>
<p>If programming isn't what you're after, you can use an RSS reader, like the one built into Firefox.</p>
<p>Perhaps you can add a bit more context to your question?</p>
http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98341#983410Answer by Charles Graham for how to display RSS feeds as HTML?Charles Graham2008-09-19T00:30:19Z2008-09-19T00:30:19Z<p>Don't most RSS feeds get rendored in most web browsers as is? Example: blog.stackoverflow.com.</p>
http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98361#983610Answer by icco for how to display RSS feeds as HTML?icco2008-09-19T00:33:57Z2008-09-19T00:33:57Z<p>If you plan on using PHP with your HTML, <a href="http://simplepie.org/" rel="nofollow">SimplePie</a> is amazingly easy.</p>
http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/98364#983640Answer by Dori for how to display RSS feeds as HTML?Dori2008-09-19T00:34:34Z2008-09-19T00:34:34Z<p>As others have said, there are a lot of different ways to do this. If you're looking for something server-side and don't want to reinvent the wheel, take a look at this list of <a href="http://www.newsonfeeds.com/faq/aggregators#Aggregators_that_require_web_server_installation" rel="nofollow">aggregators that require web server installation</a>.</p>
http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/100868#1008682Answer by Mladen Mihajlovic for how to display RSS feeds as HTML?Mladen Mihajlovic2008-09-19T10:03:54Z2008-09-19T10:03:54Z<p>One other option: <a href="http://code.google.com/apis/ajaxfeeds/" rel="nofollow">Google's Ajax Feeds</a>. Basically all you need to do is include a javascript script on your page and a placeholder div and it should display the feed using AJAX.</p>
http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/867889#8678890Answer by Itai for how to display RSS feeds as HTML?Itai2009-05-15T10:23:02Z2009-05-15T10:23:02Z<p>The google Ajax is nice.
Thanks.</p>
http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/867908#8679080Answer by miceuz for how to display RSS feeds as HTML?miceuz2009-05-15T10:28:07Z2009-05-15T10:28:07Z<p>i guess you want a javascript solution, maybe you want to <a href="http://stackoverflow.com/questions/226663/parse-rss-with-jquery">parse rss with jquery</a>?</p>
http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/869210#8692100Answer by Adi for how to display RSS feeds as HTML?Adi2009-05-15T15:02:46Z2009-05-15T15:02:46Z<p>Use a tool like <a href="http://www.rssinclude.com" rel="nofollow">www.rssinclude.com</a>. Embed the feed using either Javascript (easy!) or as static HTML using PHP, ASP or any other server side scripting.</p>
http://stackoverflow.com/questions/98308/how-to-display-rss-feeds-as-html/1537023#15370230Answer by paulmorriss for how to display RSS feeds as HTML?paulmorriss2009-10-08T10:44:31Z2009-10-08T10:44:31Z<p>I use <a href="http://feed2js.org" rel="nofollow">feed2js</a>. It's free and has a wide variety of options.</p>