PHP Classes

File: install/tbl_session_data.sql

Recommend this page to a friend!
  Classes of Stefan Gabos   Zebra_Session, a wrapper for PHP’s default session handling functions, using MySQL for storage   install/tbl_session_data.sql   Download  
File: install/tbl_session_data.sql
Role: Auxiliary script
Content type: text/plain
Description: SQL File
Class: Zebra_Session, a wrapper for PHP’s default session handling functions, using MySQL for storage
Session handler that stores session data in MySQL
Author: By
Last change:
Date: 13 years ago
Size: 279 bytes
 

Contents

Class file image Download
CREATE TABLE `session_data` (
  `session_id` varchar(32) NOT NULL default '',
  `http_user_agent` varchar(32) NOT NULL default '',
  `session_data` blob NOT NULL,
  `session_expire` int(11) NOT NULL default '0',
  PRIMARY KEY (`session_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;