Recommend this page to a friend! | Stumble It! | Bookmark in del.icio.us |
Classes of markitos | > | filecounter | > | filecounter.sql | > | Download | ||
|
Download |
CREATE TABLE counter ( identificador int(10) unsigned NOT NULL auto_increment, file char(100) NOT NULL default '', counter int(10) unsigned NOT NULL default '0', PRIMARY KEY (identificador), UNIQUE KEY file (file), UNIQUE KEY identificador (identificador), KEY identificador_2 (identificador) ) TYPE=MyISAM |