| Server IP : 104.21.80.248 / Your IP : 172.71.28.156 Web Server : Apache/2.4.25 (Win32) OpenSSL/1.0.2j PHP/5.6.30 System : Windows NT WIN-ECQAAA40806 6.2 build 9200 (Windows Server 2012 Standard Edition) i586 User : SYSTEM ( 0) PHP Version : 5.6.30 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Inetpub/www/news/datacenter/admin/ |
Upload File : |
<?php
/*==============================================
|| #############################################
|| Copyright Pike Admin - www.pikeadmin.com
|| #############################################
==============================================*/
session_start();
require("config.php");
require_once ABSPATH."/core/checklogin.php";
require_once ABSPATH."/core/functions.php";
$page = filter_input(INPUT_GET, 'page', FILTER_SANITIZE_STRING);
if(!$page) $page = 'dashboard';
$msg = filter_input(INPUT_GET, 'msg', FILTER_SANITIZE_STRING);
$pagenum = filter_input(INPUT_GET, 'pagenum', FILTER_SANITIZE_NUMBER_INT);
?>
<!DOCTYPE html>
<html>
<head>
<title>Administrators : <?php echo $cfg_site_meta_title;?></title>
<meta name="description" content="นายเสรี โพธิ์นิล นักพัฒนาระบบ">
<meta name="keywords" content="ฐานข้อมูล, admin, เสรี โพธิ์นิล, template, DBMS">
<?php include ("global-head.php");?>
</head>
<body class="adminbody">
<div id="main">
<?php include ("navigation.php");?>
<?php include ("sidebar.php");?>
<div class="content-page">
<!-- Start content -->
<div class="content">
<div class="container-fluid">
<?php
// ADMIN pages
switch ($page)
{
case $page:
include ("template-pages/".$page.".php");
break;
default:
include ("template-pages/dashboard.php");
break;
}
?>
</div>
<!-- END container-fluid -->
</div>
<!-- END content -->
</div>
<!-- END content-page -->
<?php include ("footer.php");?>
</div>
<!-- END main -->
<?php include ("global-footer.php");?>
</body>
</html>