I have a tiny rss mod, which is able to show feeds from news.php. But, I also need feeds for articles.php. Here is a feed code for news.php. What do I have to change to be able to feed for articles.php ?
Code
<?php
/*---------------------------------------------------+
| PHP-Fusion 6 Content Management System
+----------------------------------------------------+
| Copyright (c) 2005 Nick Jones
| http://www.php-fusion.co.uk/
+----------------------------------------------------+
| Released under the terms & conditions of v2 of the
| GNU General Public License. For details refer to
| the included gpl.txt file or visit http://gnu.org
+----------------------------------------------------*/
header("Content-Type: text/xml");
require_once "../maincore.php";
require_once THEME."theme.php";
include "rss_config.php";
$result3=dbquery("SELECT * FROM ".$db_prefix."news ORDER BY news_datestamp DESC LIMIT 0,10");
$result2=dbquery("SELECT siteurl FROM ".$db_prefix."settings");
$base=dbresult($result2,0);