Installazione TDCHAT Estraete l' archivio nel vostro spazio internet tramite FTP. Attivate il database Mysql Entrate in configurazione ed editate il file db.php e il file online.php e modificate l' host, l' username, la password e il nome del database. TABELLA NECESSARIA PER IL FUNZIONAMENTO DELLA CHAT CREATE TABLE IF NOT EXISTS `chat` ( `time` text NOT NULL, `nick` text NOT NULL, `post` text NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; TABELLA UTENTI ONLINE CREATE TABLE IF NOT EXISTS `useronline` ( `id` varchar(100) NOT NULL DEFAULT '0', `data` int(100) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1;