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
format_varname prepends _ instead of deleting numeric prefix, add format_slug
[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
length int,
6
expires int);
7
8
drop table if exists wfpl_session_data;
9
create table wfpl_session_data (
10
id int unique auto_increment,
11
session_id int,
12
name varchar(100),
13
value text);