News Comments

Lucasxx

New Member
Mar 14, 2015
2
0
How do I do this? Do I have to add it in a database table? If so, how? I'm new to this stuff so sorry.


HTML:
-- ----------------------------
-- Table structure for `cms_comments`
-- ----------------------------
DROP TABLE IF EXISTS `cms_comments`;
CREATE TABLE `cms_comments` (
  `id` int(6) NOT NULL AUTO_INCREMENT,
  `story` int(6) DEFAULT NULL,
  `comment` text NOT NULL,
  `date` int(10) DEFAULT NULL,
  `author` varchar(999) NOT NULL,
  `article` int(9) NOT NULL,
  `userid` int(11) NOT NULL,
  `posted_on` varchar(50) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=94 DEFAULT CHARSET=utf8;

@Wouto
 
@Sledmore @Marcelloo
 

Wickd

The first member of the Knights of the Pink Table
Jan 15, 2013
1,936
612
If running on Navicat , click Query then a new window will pop up just paste your SQL Code there and click run a query.
PcxZ4EL.png
 

Users who are viewing this thread

Top