up vote 5 down vote favorite
4
share [g+] share [fb]

How do I display a News RSS feeds from a web site into another web site?

I don't need to program or process anything, just take the information from one place and display it in the other.

Probably I want this to be done on the client side, So I guess it would need to be a javascript solution.

link|improve this question
You probably want to provide additional information about what you want the finished website to look like. – Jim McKeeth Sep 19 '08 at 0:24
feedback

18 Answers

You can use XSLT to translate the RSS to HTML: Translating RSS With XSLT

link|improve this answer
4  
The linked page, for me, is 404'd. – nsayer May 19 '10 at 21:14
feedback

One other option: Google's Ajax Feeds. 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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

I use feed2js. It's free and has a wide variety of options.

link|improve this answer
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

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.

Or if you want a client-side solution, you could try a JavaScript tool such as http://www.rss-to-javascript.com/

link|improve this answer
feedback

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.

(Now, if there's no XML parser available, you may have a bit of work ahead of you :))

link|improve this answer
If there's no XML parser, consult Jeff Atwood on the use of regular expressions for parsing RSS feeds. – Kibbee Sep 19 '08 at 0:41
feedback

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.

If programming isn't what you're after, you can use an RSS reader, like the one built into Firefox.

Perhaps you can add a bit more context to your question?

link|improve this answer
feedback

Don't most RSS feeds get rendored in most web browsers as is? Example: blog.stackoverflow.com.

link|improve this answer
feedback

You can do it server-side, by fetching the feed, parsing it yourself and outputting whichever you'd like. This can be done using XSLT, or if you really want to have some fun, you could read the file in, process it in your dev language of choice (MagpieRSS is good for this in PHP), and treat it the same way you would regular site content.

Alternatively, you can do it client-side with some javascript - you can even get Google gadgets to do all of the work for you!

link|improve this answer
feedback

If you plan on using PHP with your HTML, SimplePie is amazingly easy.

link|improve this answer
feedback

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 aggregators that require web server installation.

link|improve this answer
feedback

i guess you want a javascript solution, maybe you want to parse rss with jquery?

link|improve this answer
feedback

Use a tool like www.rssinclude.com. Embed the feed using either Javascript (easy!) or as static HTML using PHP, ASP or any other server side scripting.

link|improve this answer
feedback

i can recommend MagpieRSS to do it server side, i'm rather new to php and using/installing this was easy. then you can $rss.item.title etc...

link|improve this answer
feedback

RSSDisplay does it in perl. Not sure if that's the sort of thing you're after. Alternatively you can do it with XSLT if you roll that way

You can do it with XSLT, but I don't have a working link anymore :(

link|improve this answer
Both links are dead. – Randell Dec 14 '10 at 7:04
Well that sucks – Glenn Slaven Dec 15 '10 at 22:40
feedback

Great server side PHP script is RSS2HTML, you can download it from here: http://www.feedforall.com/download.htm

extremely easy usage, no credits or watermaks, very great template customization, dose the work perfectly, advice you using this! Any questions related to it, ask, will try to answer em'

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.