ciao

sono ai primi passi in php e MySQL

per realizzare un guestbook
ho creato relativo database

create base nome_database

successivamente col segiente codice ho creato la tabella dei messaggi

CREATE TABLE 'messaggi' (
`id` int(11) NOT NULL auto_increment,
`nome` text NOT NULL,
`email` text NOT NULL,
`sitoweb` text,
`commento` longtext NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3;

il server mysql mi dice database non selected

cosa sto sbagliando?

grazie per l'eventuale aiuto