Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 450 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 450 Bytes

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;