Nicole: Eigenes Forum

Beitrag lesen

Hallo,

meine Tabelle in der Db sieht so aus:

-- Tabellenstruktur für Tabelle posts

--

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,
  PRIMARY KEY  (postid)
) TYPE=MyISAM AUTO_INCREMENT=28 ;
Gruß Nicole