PHP Classes

File: sessions.sql

Recommend this page to a friend!
  Classes of justin fielding   DB Sessions   sessions.sql   Download  
File: sessions.sql
Role: Auxiliary data
Content type: text/plain
Description: SQL to create your sessions table in mySQL
Class: DB Sessions
Manage sessions storing in a database with PEAR DB
Author: By
Last change:
Date: 19 years ago
Size: 231 bytes
 

Contents

Class file image Download
CREATE TABLE sessions ( ses_id varchar(32) NOT NULL default '', ses_time int(11) NOT NULL default '0', ses_start int(11) NOT NULL default '0', ses_value text NOT NULL, PRIMARY KEY (ses_id) ) TYPE=MyISAM;