PHP Classes

File: SQL File

Recommend this page to a friend!
  Classes of bmpc   UsersOnline   ???   Download  
File: ???
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: 23 years ago
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;