From: Jason Woofenden Date: Tue, 7 Jul 2015 19:28:33 +0000 (-0400) Subject: add persistent.php (key/value store) X-Git-Url: https://jasonwoof.com/gitweb/?p=wfpl.git;a=commitdiff_plain;h=7c4549b936855f1d655ee1933f458817bd03e82a add persistent.php (key/value store) --- diff --git a/examples/persistent.sql b/examples/persistent.sql new file mode 100644 index 0000000..462b73c --- /dev/null +++ b/examples/persistent.sql @@ -0,0 +1,6 @@ +drop table if exists persistent; +create table persistent ( + k varchar(30) binary not null default "", + v varchar(255) binary not null default "", + primary key (k) +) CHARSET=utf8; diff --git a/persistent.php b/persistent.php new file mode 100644 index 0000000..cc12028 --- /dev/null +++ b/persistent.php @@ -0,0 +1,44 @@ +