Your IP : 216.73.216.40


Current Path : /var/www/html/mmishra/irp/admin/
Upload File :
Current File : /var/www/html/mmishra/irp/admin/index.php

<?php
//admin/index.php
require("../init.inc.php");

if ($role == 'operator') {
	header("Location: operator/");
} else if ($role == 'user') {
    header("Location: user/");
} else if ($role == 'guest') {
    header("Location: guest/");
} 

echo $header;

?>

[ <a href='admin/websessions.php'>Sessions</a> ]
[ <a href='admin/weblogs.php'>Logs</a> ]
[ <a href='admin/webusers.php'>Users</a> ]


<?php

echo $footer;

?>