Dynamic RSS Feed Request
Posted: Sun Sep 06, 2009 1:41 am
Hello,
I'm working on a news script! Can anyone help me to create Dynamic RSS Feeds? I tried but couldn't, I'm pretty new to PHP. So If possible can anyone program a RSS Feed page for me.
Here is the template for RSS Feeds.
Here is how my database is designed:

Link eg:
http://localhost/tsss/blog.php?act=view&id=1
I don't need to display news on RSS Feed Page, Just titles, link & date
Thank you,
I'm working on a news script! Can anyone help me to create Dynamic RSS Feeds? I tried but couldn't, I'm pretty new to PHP. So If possible can anyone program a RSS Feed page for me.
Here is the template for RSS Feeds.
Code: Select all
<rss version='2.0' xmlns:atom='http://www.w3.org/2005/Atom'>
<channel>
<title>Title</title>
<description>Description</description>
<link>Link</link>
<atom:link href='http://something.xml' rel='self' type='application/rss+xml' />
<item>
<title>Title of the post</title>
<pubDate>Date published</pubDate>
<link>Link</link>
<guid>Link</guid>
</item>
<item>
</channel>
</rss>
Link eg:
http://localhost/tsss/blog.php?act=view&id=1
I don't need to display news on RSS Feed Page, Just titles, link & date
Thank you,