Daniel: Eigenes Forum

Beitrag lesen

CREATE TABLE posts (
  postid int(11) NOT NULL auto_increment,
  threadid int(11) NOT NULL default '0',
  von text NOT NULL,
  datum text NOT NULL,
  post text NOT NULL,
  titel text NOT NULL,
  ip text NOT NULL,
  'geschlossen' int(1) not null
  PRIMARY KEY  (postid)
)

bei einem eintrag hast du ja dann

INSERT INTO posts VALUES("", "thread_id", "von", "datum", "post", "titel", "ip", "0");

dann machst du

UPDATE posts SET geschlossen="1" where threadid="xy";

MfG