Skip to content

Latest commit

 

History

6 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Database SessionHandler PHP class

Abstract DbSessionHandler. Test and working for MySQL. It uses PDO driver.

Recommended database session table

CREATE TABLE `sessions` (
	`id` varchar(63) CHARACTER SET ascii NOT NULL DEFAULT '',
	`data` text,
	`expire` int(10) unsigned DEFAULT NULL,
	PRIMARY KEY (`id`),
	KEY `expire` (`expire`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

About

Database SessionHandler PHP class

Resources

Stars

19 stars

Watchers

3 watching

Forks

Releases

Packages

Contributors

Languages