We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6db4657 commit 117afd2Copy full SHA for 117afd2
README.md
@@ -12,10 +12,17 @@ This package is designed to store PHP sessions in a MySQL database so that you c
12
13
### Installing on your server
14
15
-Step 1
+Create a session table in your MySQL database by running [install/setup.sql](install/setup.sql)
16
17
```
18
-Example
+CREATE TABLE `likel_sessions` (
19
+ `id` char(128) NOT NULL DEFAULT '',
20
+ `set_time` char(10) NOT NULL,
21
+ `data` text NOT NULL,
22
+ `session_key` char(128) NOT NULL,
23
+ `iv` varchar(16) NOT NULL,
24
+ PRIMARY KEY (`id`)
25
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
26
27
28
Step 2
0 commit comments