| Help with mysql -
06-03-2006, 02:54 PM
What is wrong with this code anyone? I am doing a tutorial of off php.net but I am getting an error with this code
CREATE TABLE guests (
guest_id
int(4)
unsigned
zerofill
DEFAULT '0000'
NOT NULL
auto_increment,
guest_name varchar(50),
guest_email varchar(50),
guest_time timestamp(14),
guest_message text,
PRIMARY KEY (guest_id)
); |