![]() |
How to create RSS feed - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21) +--- Thread: How to create RSS feed (/showthread.php?tid=18648) |
How to create RSS feed - El Forum - 05-13-2009 [eluser]clintonbeattie[/eluser] Hi, I've nearly finished my blog build with codeigniter and wondering how easy it is to output an RSS feed so people can subscribe with a feed reader. Any advice welcome. Thanks, C How to create RSS feed - El Forum - 05-13-2009 [eluser]Evil Wizard[/eluser] depends on how you want to format the feed, because RSS is only 1 feed format, you may consider later JSON, or ATOM, but you would build the output just like you would a normal view, and send a download header, using the download helpers and redirect back if necessary How to create RSS feed - El Forum - 05-13-2009 [eluser]bobbybaboon[/eluser] This thread should get you started: http://ellislab.com/forums/viewthread/45813/P15/ How to create RSS feed - El Forum - 05-13-2009 [eluser]clintonbeattie[/eluser] Thanks. Will look at that thread now and the other advice. How to create RSS feed - El Forum - 05-13-2009 [eluser]Gordaen[/eluser] <a href="http://www.derekallard.com/blog/post/building-an-rss-feed-in-code-igniter/">Derek's post</a> from a while back should point you in the right direction. How to create RSS feed - El Forum - 02-15-2010 [eluser]Unknown[/eluser] Hi there, I have finished my RSS feed, tested it and all works perfectly, but when I remove an article from my feed it still showed in the reader. How do i get the reader to see the article is no longer part of the feed? http://www.rsschannelwriter.com/ A new version of RSS Channel Writer released by Emergency Soft. This comprehensive, yet easy-to-use software promises to be the most professional in its field. How to create RSS feed - El Forum - 02-15-2010 [eluser]Stefano G[/eluser] I don't know if my advice could be of any help after all the replies you had but, I personally use SimplePie RSS that can be easily transformed in a CI Plugin reading this tutorial: http://68kb.com/2007/10/31/codeigniter-and-simplepie/ Have fun! Stefano ![]() |