PHP Classes

File: sessions.sql

Recommend this page to a friend!
  Classes of João Romão   MySessions   sessions.sql   Download  
File: sessions.sql
Role: Auxiliary data
Content type: text/plain
Description: MySQL table structure
Class: MySessions
Handler that stores session data in a MySQL table
Author: By
Last change:
Date: 15 years ago
Size: 318 bytes
 

Contents

Class file image Download
SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for sessions -- ---------------------------- CREATE TABLE IF NOT EXISTS `sessions` ( `id` varchar(32) NOT NULL, `access` int(10) unsigned default NULL, `data` text, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1;