CODE:
if(mysql_query("create table ".$table_news." (
idnum int not null default 0 auto_increment,
time varchar(5),
datum date,
title text,
content text,
visible varchar(3) default 'on',
ip text,
brouser text,
primary key(idnum)
)")
idnum int not null default 0 auto_increment,
time varchar(5),
datum date,
title text,
content text,
visible varchar(3) default 'on',
ip text,
brouser text,
primary key(idnum)
)")
Когда делаю запись в нее, то выводит ошибка - "Column count doesn't match value count at row 1"
В чем проблема?