Hello fellow members:
I want to nest my forum replies....meaning reply to a reply....so want to create a 2 dimensional array with one number refering to the orig post and the other for each reply on that post
Could somebody please help me out.
Thanks in advance
my forum_replies table looks like this....
CREATE TABLE IF NOT EXISTS `forum_replies` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tid` int(11) NOT NULL,
`uid` int(11) NOT NULL,
`message` text NOT NULL,
`date` varchar(64) NOT NULL,
`time` int(25) NOT NULL,
`edit_time` int(25) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=33 ;
So will I need to create a new nested table with reply_id or simply modify my current table