Finally got the error again here it is:
SQL query:
CREATE TABLE `downloads` (
`id` int( 9 ) NOT NULL AUTO_INCREMENT ,
`type` char( 255 ) NOT NULL default '',
`title` char( 255 ) NOT NULL default '',
`url` char( 255 ) NOT NULL default '',
`sname` char( 100 ) NOT NULL default '',
`surl` char( 255 ) NOT NULL default '',
`date` char( 16 ) NOT NULL default '',
`email` char( 255 ) NOT NULL default '',
`views` int( 9 ) NOT NULL default '0',
`reports` int( 9 ) NOT NULL default '0',
PRIMARY KEY ( `id` ) ,
UNIQUE KEY `id` ( `id` )
) ENGINE = MYISAM DEFAULT CHARSET = latin1
MySQL said:
#1064 - 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 'DEFAULT CHARSET=latin1' at line 14
hope that helps thanks.