i have this code but it cant work in my hosting
usualy the error is :
The following errors were reported:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''comments' ( 'id' int (4) NOT NULL auto_increment, 'name' varchar (65) NOT NUL' at line 1
ths is my code :
CREATE TABLE 'comments' (
'id' int(4) NOT NULL auto_increment,
'name' varchar(65) NOT NULL default,
'email' varchar(100) NOT NUL,
'comment' longtext NOT NULL,
'datetime' varchar(65) NOT NULL,
PRIMARY KEY ('id')
)
ENGINE=MyISAM DEFAULT
CHARSET = Larin 1
AUTO_INCREMENT=1;