Just got into phpminiadmin (at last) and put a fairly standard MySQL statement in to create a table but I have a syntax error coming up.

I have selected the db so there shouldn't be an issue.

I normally use MyphpAdmin so life is a bit easier for those not as comfortable with MySQL syntax.

Anyone got any ideas why?

CODE
CREATE TABLE 'LOG'(
'ID' INT NOT NULL AUTO_INCREMENT,
PRIMARY KEY(ID),
'USER' VARCHAR(50),
'IP' VARCHAR(50),
'WHEN' DATETIME,
'BROWSER' VARCHAR(200),
'REFERER' VARCHAR(200),
'URL' VARCHAR(200)
)ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1;