automatisk oprettelse af tables i MySQL vha. PHP
jeg skal have PHP til at oprette følgende database:create table blah (
id integer not null primary key auto_increment,
time datetime not null,
ip varchar(100) not null,
nick varchar(100) not null,
comment varchar(255) not null
);
men hvordan ?
