Simple Session Process Example
<?php
// echo session variables
echo 'The combined values of the session variables are '
. $_SESSION['myVariable1'] . $_SESSION['myVariable2'];
?>
Warning: Undefined array key "myVariable1" in
D:\InetPub\vhosts\mjowett-1638.package\qcitr.com\wwwroot\demos\sessions\process.php on line
27
Warning: Undefined array key "myVariable2" in
D:\InetPub\vhosts\mjowett-1638.package\qcitr.com\wwwroot\demos\sessions\process.php on line
27
The combined values of the session variables are
<?php
//unset all of session variables
session_unset();
//destroy session
session_destroy();
?>
Back to
sessions.