Page 1 of 1
Show database table content in RSS using php
Posted: Fri Nov 13, 2009 10:54 pm
by rbhoumik
I have a table which stores details of products in MySql...I have to show the details in RSS feed...I don't know anything about it so step by step guide will be highly appreciated
Re: Show database table content in RSS using php
Posted: Fri Nov 13, 2009 11:26 pm
by requinix
I won't hold your hand but I will point you to the
RSS 2.0 specification.
Re: Show database table content in RSS using php
Posted: Sat Nov 14, 2009 6:17 am
by rbhoumik
Re: Show database table content in RSS using php
Posted: Sat Nov 14, 2009 2:21 pm
by requinix
It tells you what an RSS feed looks like. It lists each tag, where it belongs, what it is for, and what the data inside should look like.
Go through it and figure out what of your stuff goes where. For example, channel/pubDate could be for when the database was last updated, channel/item/title could be the product name, channel/item/link could be a link to the product's page, and so on.