Show database table content in RSS using php
Moderator: General Moderators
Show database table content in RSS using php
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
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
How will I use it?tasairis wrote: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
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.
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.