backend.php automatically creates an RSS feed from your news. There is nothing you need to do. Users can put the URL to the backend.php file into their RSS reader and it should work
I thought I would go ahead and post my backend.php just in case:
<php>sql_fetchrow($db->sql_query("SELECT catid FROM ".$prefix."_stories_cat WHERE title LIKE '%$cat%' LIMIT 1"));
if ($catid == "") {
$result = $db->sql_query("SELECT sid, title, hometext FROM ".$prefix."_stories ORDER BY sid DESC LIMIT 10");
} else {
$catid = intval($catid);
$result = $db->sql_query("SELECT sid, title, hometext FROM ".$prefix."_stories WHERE catid='$catid' ORDER BY sid DESC LIMIT 10");
}
} else {
$result = $db->sql_query("SELECT sid, title, hometext FROM ".$prefix."_stories ORDER BY sid DESC LIMIT 10");
}
Also, it won't solve this problem, but you may want to check out my nukeFEED module that allows you to generate many types of feeds (e.g. last 7 news items from this news category, most popular 20 downloads, etc.)
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum