where is my error in this area, can you edit the code?

DROP TABLE IF EXISTS promosyon;
CREATE TABLE promosyon (
   ID int(11) NOT NULL auto_increment,
   code varchar(64) NOT NULL,
   password varchar(64) NOT NULL,
   percent double NOT NULL,
   ammount int(11) NOT NULL,
   used int(11) NOT NULL,
   left int(11) NOT NULL,
   PRIMARY KEY (ID),
);

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.