| Current Path : /var/www/html/mmishra/istore/admin/ |
| Current File : /var/www/html/mmishra/istore/admin/index.php |
<?php
require("../session.inc");
echo $header;
if ($role == 'Admin') {
echo "
[ <a href='admin/?pg=websessions'>Sessions</a> ]
[ <a href='admin/?pg=weblogs'>Logs</a> ]
[ <a href='admin/?pg=webusers'>Users</a> ]
";
}
$pg = $_REQUEST["pg"];
if (!$pg) $pg = 'stockbook';
include("$pg.inc");
echo $footer;
/* close connection */
$mysqli->close();
?>