数据库结构 Table - newpost :This table will contain the New Topic posted messages postid (PRimary key) The unique id for each new topic. name The name of the author of the message. email E-mail address of the author. subject Subject of the message. ip IP address of the author. date Date / Time of the Post message Message posted. replies Number of replies to the post (if any) views Number of times the message has been viewed.
Table - reply :This table will contain the Replies made to the new topics. replyid (primary key) The unique id for each reply. name Name of the author. email E-mail address of the author. subject Subject of the post ip IP of the author. date Date / Time of post. message Message posted. postid postid from the "newpost" table for which this message is a reply.