Got questions, comments, patches, etc.?
Contact Jason Woofenden
gitweb
/
wfpl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fix db_get_value after mysql->mysqli upgrade
[wfpl.git]
/
examples
/
session.sql
1
drop table if exists wfpl_sessions;
2
create table wfpl_sessions (
3
id int unique auto_increment,
4
session_key varchar(16),
5
idle_timeout int,
6
expires int,
7
expires_max int,
8
value text
9
) CHARSET=utf8;