Not sure how you guys are doing this but is there a reason when I run the code in mysql I get these errors:
Code:
CREATE TABLE sponsors (
id int(11) NOT NULL auto_increment,
name tinytext NOT NULL,
sponban text NOT NULL,
sponlink text NOT NULL,
sponpoint int(11) NOT NULL default \'0\',
sponday int(11) NOT NULL default \'0\',
sponexp int(11) NOT NULL default \'0\',
sponhits int(11) NOT NULL default \'0\',
PRIMARY KEY (id),
KEY id (id)
);
MySQL said:
You have an error in your SQL syntax near '\'0\',
sponday int(11) NOT NULL default \'0\',
sponexp int(11) NOT NULL de' at line 6
I can't get past first step