⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 topbar.php

📁 jsp程序开发系统
💻 PHP
字号:
<?php
// +-------------------------------------------------------------+
// | DeskPRO v [2.0.1 Production]
// | Copyright (C) 2001 - 2004 Headstart Solutions Limited
// | Supplied by WTN-WDYL
// | Nullified by WTN-WDYL
// | Distribution via WebForum, ForumRU and associated file dumps
// +-------------------------------------------------------------+
// | DESKPRO IS NOT FREE SOFTWARE
// +-------------------------------------------------------------+
// | License ID : Full Enterprise License =) ...
// | License Owner : WTN-WDYL Team
// +-------------------------------------------------------------+
// | $RCSfile: topbar.php,v $
// | $Date: 2004/02/10 01:34:25 $
// | $Revision: 1.7 $
// +-------------------------------------------------------------+
// | File Details:
// | - Top navigation bar (administration interface)
// +-------------------------------------------------------------+

error_reporting(E_ALL & ~E_NOTICE);
include ('./global.php');

$settings = $db->query_return("SELECT * FROM settings WHERE settings = 'deskpro_version'");
?>
<HTML>
<HEAD>
<style type="text/css">
a.nav, a.nav:visited {color: white; font-weight: bold; font-size: 8pt; font-family: verdana, helvetica, sans-serif; text-decoration: none;}
a.nav:hover {color: #ffdc00; text-decoration: underline;}
a.nav2, a.nav:visited {color: white; font-size: 8pt; font-family: verdana, helvetica, sans-serif; text-decoration: none;}
a.nav2:hover {color: #ffdc00; text-decoration: underline;}

td,li,p,input,select,textarea {
	font-family: verdana,arial,helvetica,sans-serif;
	font-size: 8pt;
	color: #ffdc00;
}

</style>
</head>

<BODY bgcolor="darkblue">
<table width="100%">
<tr>
<td><b>Welcome back <?php echo $user[username]; ?> [<a class="nav" href="login.php?do=logout" target="_parent">Log Out</a>]</b></td>
<td align="right">
<!--WTN-WDYL-->Powered by DeskPRO v<?php echo $settings[value]; ?>
</td>
</tr>
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -