CREATE TABLE udplog (
   indx int(20) NOT NULL auto_increment,
   time int(20) NOT NULL,
   printto text NOT NULL,
   txt text NOT NULL,
   PRIMARY KEY  (indx)
) TYPE=MyISAM;
