tags:

views:

116

answers:

7

I have an RSS feed from a wp blog that I'd like to display in a series of non-wordpress, php based sites. Any recommendations on a pre-built widget I can use?

A: 

check this question

Oscar Cabrero
A: 

Off the top of my head I can't think of a widget, but it isn't too difficult.

You can use cURL to get the file, or file_get_contents() if it allows you, and SimpleXML to parse the data inside.

alex
+1  A: 

Check Zend_Feed.

raspi
A: 

Zend would be overkill,because you'd have to install the whole framework.

Check out the simplepie library - it's awesome. http://simplepie.org/

Max
This is not correct, especially with Zend Framework you can take just install/use only the components you need.
Peter Smit
A: 

Also consider LastRSS.

thedz
A: 

php5 includes an extension called SimpleXML that's probably just what you're looking for.

Evan Hanson
A: 

Nothing compares to Coreylib. (http://coreylib.com). Seriously, it's the easiest thing ever with this!

Kenneth Reitz