Salve,

visto che non sono ferrato in database, volevo provare uno semplice script con mysql per vedere che succede, quindi mettendo questa querry per creare una tabella in mysql:
codice:
CREATE TABLE 'notizie' (
'id' int(11) NOT NULL auto_increment,
'testo' varchar(255) NOT NULL default '',
PRIMARY KEY ('id')
) TYPE=MyISAM;
Mi da come risultato:
#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 ''notizie' ( 'id' int(11) NOT NULL auto_increment, 'testo' varchar(255) NOT NUL' at line 1
Qualcuno piu' bravo di me mi dice dove sbaglio


Grazie anticipate