Login   Register  
PHP Classes
elePHPant
Icontem

File: filecounter.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2002-06-27 08:10
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