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:
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
2009-04-03 01:49:57
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
2009-04-03 02:05:59
This is not correct, especially with Zend Framework you can take just install/use only the components you need.
Peter Smit
2009-04-20 07:27:32
A:
php5 includes an extension called SimpleXML that's probably just what you're looking for.
Evan Hanson
2009-04-03 04:59:52
A:
Nothing compares to Coreylib. (http://coreylib.com). Seriously, it's the easiest thing ever with this!
Kenneth Reitz
2009-08-28 22:40:41