<?
/*************************************************************************************
COPYRIGHT NOTICE
This copyright notice must appear at the top of all scripts which are part of
the Web Application Gateway package.
Copyright (C) 2001-2008 Gregory Engel
All rights reserved
8547 E Arapahoe Rd, #J-504
Greenwood Village, CO 80112 USA
hide@address.com
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
The GNU General Public License can be found at http://www.gnu.org/copyleft/gpl.html
A copy is included with the WAG package and is found in the text file gpl.txt
You should have received a copy of the GNU General Public License (gpl.txt, gpl.html)
along with the WAG distribution package; if not, the GNU General Public License can
be found at http://www.gnu.org/copyleft/gpl.html, or by writing to:
Free Software Foundation, Inc.
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA.
This script is part of the Web Application Gateway (WAG) Project. The WAG software
is free, subject to the terms of the GNU General Public License as published by the
Free Software Foundation, either version 2 of the License, or (at your option) any
later version.
$Revision: 58 $
$LastChangedDate: 2008-01-16 10:01:11 -0700 (Wed, 16 Jan 2008) $
$LastChangedBy: gpeangel $
*************************************************************************************/
// *******************************************************************************************
// The following lines MUST be included at the top of every PHP script in the application.
// This helps ensures session, access and permission integrity.
//
require("../../common/access.php");
require("inf.php");
//
// *******************************************************************************************
$_SESSION[$app_guid]["app_guid"] = $app_guid;
$_SESSION[$app_guid]["app_name"] = $app_name;
$_SESSION[$app_guid]["app_description"] = $app_description;
?>
<html>
<head>
<title><? echo $_SERVER["PHP_SELF"]; ?></title>
<!-- If the application is to have the look and feel of the gateway, reference
the following stylesheet. Otherwhise, use a custom css and reference. -->
<link rel="stylesheet" type="text/css" href="../../common/gateway.css" />
</head>
<body bgcolor="#ffffff">
<p style="font-size: 12pt;"><b>Example Application</b></p>
<p><b>Application Session Values</b></p>
<ul>
<li><b>Application GUID:</b> <? echo $_SESSION[$app_guid]["app_guid"]; ?></li>
<li><b>Application Name:</b> <? echo $_SESSION[$app_guid]["app_name"]; ?></li>
<li><b>Application Description:</b> <? echo $_SESSION[$app_guid]["app_description"]; ?></li>
</ul>
</body>
</html>