Anyone have any snazzy code that will pull all of the forum threads (responses), much like this PHP forum here. Perhaps storing it in an array?
Here is the table:
CREATE TABLE forum (
forum_id int(11) NOT NULL auto_increment,
forum_parent_id int(11) DEFAULT '0' NOT NULL,
forum_topic_id int(11) DEFAULT '1' NOT NULL,
user_id int(11) DEFAULT '0' NOT NULL,
subject varchar(255) NOT NULL,
message text NOT NULL,
date_in timestamp(14),
active tinyint(4) DEFAULT '1' NOT NULL,
email_reply tinyint(4) DEFAULT '1' NOT NULL,
PRIMARY KEY (forum_id)
);
Thanks for your help.
P.S. Has the search the forum ever worked on this site?