Session management with PHP Class.
Starts sessions. It works the same as the session_start() function.
$Session = new Session();
$Session->Start();
Allows you to create or set a session value.
$Session = new Session();
$Session->Start();
$Session->Create('test', 'This is a test message.');
Lets you call the session value you created.
$Session = new Session();
$Session->Start();
$Session->Create('test', 'This is a test message.');
$test = $Session->Get('test');
echo $test;
This is a test message.
Allows you to delete the session value you created.
$Session = new Session();
$Session->Start();
$Session->Create('test', 'This is a test message.'); // We create a new value.
$Session->Delete('test'); // We delete the value we created. The "test" value will no longer work.