Login   Register  
PHP Classes
elePHPant
Icontem

File: users_online.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  >  users_online.sql  >  Download  
File: users_online.sql
Role: Configuration script
Content type: text/plain
Description: Creates the table for the class
Class: UsersOnline
This class calculates the number of users "online"
Author: By
Last change:
Date: 2002-04-26 18:17
Size: 277 bytes
 

Contents

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

CREATE TABLE `users_online` (
  `id` int(10) NOT NULL auto_increment,
  `ip` varchar(15) NOT NULL default '',
  `timestamp` varchar(15) NOT NULL default '',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `id` (`id`)
) TYPE=MyISAM;