I wrote this component: http://www.milesj.me/resources/script/feed-aggregator-component
Pretty basic, but gets the job done. On Dec 14, 4:22 pm, Tonu Tusk <[email protected]> wrote: > Hi, I'm currently using SimplePie to show some recent blog posts off > specific blogs via their feeds. > Is this what you are after, could you not get simplepie working for > you, or does it just not deliver the full functionality you are > looking for. > > Let me know if I can be of any help with my (limited) simplepie > knowlege. > > On Dec 14, 10:38 am, appel268576 <[email protected]> wrote: > > > Hi guys, > > > I am looking at making use of certain RSS feeds, XML files from a site > > to display certain content on their. > > I have tried with simplepie but no luck. > > > Is there anybody that could tell me if there are any solutions to help > > you too display RSS in your controllers.? > > > Controller > > > <?php > > > class RssController extends AppController{ > > var $name = "Rss"; > > var $components = array('Simplepie'); > > // As the RSS will not currently use a database > > var $uses = array(); > > > function index() { > > App::import('Xml'); > > $file = "feed://wordsmith.org/awad/rss1.xml"; > > > $parsed_xml =& new XML($file); > > $parsed_xml = Set::reverse($parsed_xml); > > > debug($parsed_xml); > > echo $parsed_xml; > > } > > > } > > > ?> > > > dont know where to start with the view... > > > any help would be appreciated. Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en
