vote up 1 vote down star
2

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.

flag
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

17 Answers

vote up 7 vote down check

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

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

The google Ajax is nice. Thanks.

link|flag
vote up 2 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
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
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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