| Server IP : 104.21.37.246 / Your IP : 172.71.28.145 [ Web Server : Apache System : Linux cpanel01wh.bkk1.cloud.z.com 2.6.32-954.3.5.lve1.4.59.el6.x86_64 #1 SMP Thu Dec 6 05:11:00 EST 2018 x86_64 User : cp648411 ( 1354) PHP Version : 7.2.34 Disable Function : NONE Domains : 0 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/2388322/cwd/3rdparty/phpPgAdmin/ |
Upload File : |
<?php
/**
* Main access point to the app.
*
* $Id: index.php,v 1.13 2007/04/18 14:08:48 mr-russ Exp $
*/
// Include application functions
$_no_db_connection = true;
include_once('./libraries/lib.inc.php');
$misc->printHeader('', null, true);
$rtl = (strcasecmp($lang['applangdir'], 'rtl') == 0);
$cols = $rtl ? '*,'.$conf['left_width'] : $conf['left_width'].',*';
$mainframe = '<frame src="intro.php" name="detail" id="detail" frameborder="0" />'
?>
<script>
function getFile(url, passData) {
var AJAX = false;
try {
if (window.XMLHttpRequest) {
AJAX=new XMLHttpRequest();
}
else {
AJAX=new ActiveXObject("Microsoft.XMLHTTP");
}
}
catch (e) {}
if (AJAX) {
AJAX.open("POST", url + '?' + new Date().getTime(), false);
AJAX.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
AJAX.send(passData);
return AJAX.responseText;
}
else {
return false;
}
}
/*
window.onbeforeunload = function () {
var response = getFile('logout.php', '' );
}
*/
</script>
<frameset cols="<?php echo $cols ?>">
<?php if ($rtl) echo $mainframe; ?>
<frame src="browser.php" name="browser" id="browser" frameborder="0" />
<?php if (!$rtl) echo $mainframe; ?>
<noframes>
<body>
<?php echo $lang['strnoframes'] ?><br />
<a href="intro.php"><?php echo $lang['strnoframeslink'] ?></a>
</body>
</noframes>
</frameset>
<?php
$misc->printFooter(false);
?>