|
hi
i need some help
im installing a script and have to add a sql table
i know i can usually paste it into phpmyadmin but it wont accept the details
this is the table
CREATE TABLE ".$prefix."store_comments (
name varchar(100) NOT NULL,
product varchar(60) NOT NULL default '',
stars tinyint(1) DEFAULT '0' NOT NULL,
status tinyint(1) DEFAULT '0' NOT NULL,
comments text NOT NULL,
id int(60) NOT NULL auto_increment,
PRIMARY KEY (id))
the $prefix wont get accepted
how can I get this table into my database
Thanks
|