/***************************************************************************
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *	 http://www.gnu.org/licenses/gpl.txt
 *
 ***************************************************************************/

 Read me.
 
 Custom Sessions:
	A PHP class that uses PHP and MySQL to store session information.

 http://www.bsgonlinegames.com/
 
 Requires PHP 4.1+

 1.0 Setup

	Create MySQL table 
	
CREATE TABLE `sessions` (
    `id` char(64) NOT NULL,
    `name` char(32),
    `time` int,
    `expire` int,
    PRIMARY KEY (`id`),
    KEY (`time`)
);
	
	Upload files to web server.
	Edit session.class.php.

 2.0 Using Class
 
 	See example.php for an example.