Martin2004: Nachtrag !!!!

Beitrag lesen

Nachtrag:

So sieht meine Tabelle in der SQM Datenbank aus:

CREATE TABLE de\_entries (
  id int(11) NOT NULL auto_increment,
  pid int(11) NOT NULL default '0',
  tid int(11) NOT NULL default '0',
  uniqid tinytext NOT NULL,
  time timestamp(14) NOT NULL,
  last\_answer timestamp(14) NOT NULL,
  edited timestamp(14) NOT NULL,
  edited\_by tinytext NOT NULL,
  user\_id int(11) default '0',
  name tinytext NOT NULL,
  subject tinytext NOT NULL,
  category tinytext NOT NULL,
  email tinytext NOT NULL,
  hp tinytext NOT NULL,
  place tinytext NOT NULL,
  ip tinytext NOT NULL,
  text text NOT NULL,
  show\_signature tinyint(4) default '0',
  email\_notify tinyint(4) default '0',
  marked tinyint(4) default '0',
  locked tinyint(4) default '0',
  fixed tinyint(4) default '0',
  views int(11) default '0',
  PRIMARY KEY  (id),
  UNIQUE KEY ID (id),
  KEY tid (tid),
  KEY category (category(10))
) TYPE=MyISAM AUTO_INCREMENT=82 ;