Login   Register  
PHP Classes
elePHPant
Icontem

File: statistics.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of bmpc  >  UsersOnline  >  statistics.sql  >  Download  
File: statistics.sql
Role: Configuration script
Content type: text/plain
Description: Creates the statistics table
Class: UsersOnline
This class calculates the number of users "online"
Author: By
Last change: Added table structure.
Date: 2002-06-05 01:14
Size: 277 bytes
 

Contents

Class file image Download
#
# Table structure for table 'statistics'
#

CREATE TABLE `statistics` (
  `id` int(10) NOT NULL auto_increment,
  `logtime` varchar(15) NOT NULL default '',
  `logged_users` int(10) NOT NULL default '',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `id` (`id`)
) TYPE=MyISAM;