CREATE TABLE `comments` ( `id` varchar(25) NOT NULL default '', `content` text NOT NULL, `name` text NOT NULL, `email` text NOT NULL, `time` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
The id field has the post ID that the comment was made in, content is obviously the content and you know the rest.
Any ideas?
