| RSS Feed Creator |
| Tuesday, 18 August 2009 17:52 | ||||
|
RSS Feed Creator is a wonderful tool that allows the user to specify SQL queries that will be used to create RSS feeds.
Instructions:Create a Feed entry for each RSS feed you want created:
Examples:PHPBB Posts:SELECT
phpbb_posts.post_subject title, FROM_UNIXTIME(phpbb_posts.post_time) date, CONCAT('/forum/index.php?f=', phpbb_posts.forum_id, '&t=', phpbb_posts.topic_id, '&rb_v=viewtopic#p', phpbb_posts.post_id) link, phpbb_posts.post_text description, phpbb_users.username_clean author, phpbb_forums.forum_name category, '' comments, phpbb_posts.bbcode_bitfield, phpbb_posts.bbcode_uid FROM phpbb_posts INNER JOIN phpbb_forums ON phpbb_forums.forum_id = phpbb_posts.forum_id INNER JOIN phpbb_users ON phpbb_users.user_id = phpbb_posts.poster_id WHERE phpbb_posts.post_approved = 1 ORDER BY phpbb_posts.post_time DESC Joomla Content:SELECT |
||||
| Last Updated on Wednesday, 21 July 2010 04:12 |