11
Would be handy if USERVISIT/SQL/mysql.sql was rewritten to one table
CREATE TABLE visit_user (
id int(11) NOT NULL auto_increment,
visitname text,
nom varchar(100) NOT NULL,
page varchar(200) NOT NULL,
nvisit int(7) DEFAULT '0' NOT NULL,
temps varchar(30) NOT NULL,
tempsf varchar(30) NOT NULL,
PRIMARY KEY (id)
) TYPE=MyISAM;
but then probably would need to rewrite the whole code...