* @copyright 2004 http://www.php-tools.net * @license LGPL **/ // load error handler include_once './_error.php'; // include factory/loader include_once '../patSession.php'; $sess =& patSession::singleton( 'ham', 'Native' ); echo 'Store a value into session...
'; $sess->set( 'fb', 'fine business' ); echo '...get the value back: "'. $sess->get( 'fb' ) .'"
'; echo 'Destroy the session...
'; $sess->destroy(); echo '...try to recieve a value from the session
'; $sess->get( 'fb' ); ?>