Login   Register  
PHP Classes
elePHPant
Icontem

File: contador.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Michel Wilhelm  >  ShellCont  >  contador.sql  >  Download  
File: contador.sql
Role: Auxiliary data
Content type: text/plain
Description: SQL
Class: ShellCont
Keep track of site visits in a MySQL table
Author: By
Last change:
Date: 2007-01-20 08:47
Size: 245 bytes
 

Contents

Class file image Download
CREATE TABLE `contador` (
  `contador_id` int(10) unsigned NOT NULL auto_increment,
  `contador_cont` int(10) unsigned default NULL,
  PRIMARY KEY  (`contador_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

INSERT INTO `contador` VALUES (1,0);