Skip to content

kafene/PdoSqliteSessionHandler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

PdoSqliteSessionHandler

PHP Session Handler using a SQLite Database

require_once "PdoSqliteSessionHandler.php";

PdoSqliteSessionHandler::register();
session_start();

var_dump($_SESSION, session_save_path());

$_SESSION["color"] = "blue";
$_SESSION["animal"] = "elephant";

// Reload the page and the variables should be set in the var_dump.

About

PHP Session Handler using a SQLite Database

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages