Quantcast
Channel: Building an RSS Feed in Code Igniter - Stack Overflow
Browsing all 3 articles
Browse latest View live

Answer by csotelo for Building an RSS Feed in Code Igniter

Respect the MVC, use "$this->db->order_by("id", "asc")->get_where ..." in a CI_Model, example:your CI_Controller:function rss_feed() { $data['encoding'] = 'utf-8'; // the encoding...

View Article



Answer by Cyclone for Building an RSS Feed in Code Igniter

$entry->post_body isn't definedJust a small thing as well, but you have two semicolons: $data['posts'] = $this->db->order_by("id", "asc")->get_where('rss_feed', array('id' => 1));; and...

View Article

Building an RSS Feed in Code Igniter

I want building an RSS Feed but my output not true, how can fix it?i use this tutorial:http://www.derekallard.com/blog/post/building-an-rss-feed-in-code-igniter/Please see my full code in...

View Article
Browsing all 3 articles
Browse latest View live


Latest Images