PHP Classes

File: filecounter.sql

Recommend this page to a friend!
  Classes of markitos   filecounter   filecounter.sql   Download  
File: filecounter.sql
Role: ???
Content type: text/plain
Description: sql tables structure
Class: filecounter
File counter class
Author: By
Last change:
Date: 21 years ago
Size: 333 bytes
 

Contents

Class file image 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