phpmady Posted March 20, 2010 Share Posted March 20, 2010 CREATE TABLE IF NOT EXISTS `articles` ( `Articles_ID` int(4) NOT NULL AUTO_INCREMENT, `User_ID` int(50) NOT NULL DEFAULT '0', `Articles_Title` varchar(255) NOT NULL DEFAULT '', `Articles_Content` text NOT NULL, `Articles_Picture` varchar(50) NOT NULL DEFAULT '', `Articles_Icon` text NOT NULL, `Articles_Active` int(1) NOT NULL DEFAULT '0', `Articles_Sticky` int(1) NOT NULL DEFAULT '0', `Articles_Order` int(4) NOT NULL DEFAULT '1', `Articles_Date` varchar(20) NOT NULL DEFAULT '', `Articles_Views` int( NOT NULL DEFAULT '0', `Articles_AllowComments` int(1) NOT NULL DEFAULT '0', `Articles_KeyWords` text NOT NULL, `ArticlesSection_ID` int(2) NOT NULL DEFAULT '0', `Language_ID` int(10) NOT NULL, `Articles_Link` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`Articles_ID`) ) ENGINE=MyISAM ; I am using the above strucure for creating rss feed, am calling the articles item like below extension http://localhost/project_demo/articles.php?do=show&Articles_ID=22 how to insert the LINK in the rss feed for the above url... Pls help me do i want to create the seperate table for rss_articles like this or i can insert in the above structure itself if i can insert in the above structure itself means, how to insert it Thanks In Advance, may be am pushing too much, I dont know Cheers Link to comment https://forums.phpfreaks.com/topic/195956-rss-help/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.