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

📄 head_acc.php

📁 自己实现一个实用的商店应用系统
💻 PHP
字号:
<?php
////////////////////////////////////////////////////////
// Author by Shuweich
// Date : 2007.07.27
// 建站支持: http://www.shuweich.net
// 作者: Shuweich
// QQ: 1502384
// ICQ: 190492112
// MSN: shuweich@hotmail.com
// E-mail: root@shuweich.net
// E-mail: shuweich@163.com
// CMS交流站点: http://www.shuweich.net
////////////////////////////////////////////////////////
////////////////////////////////////////////////////////
// include_once '../../mainfile.php';
?>
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-CN" lang="zh-CN">
<head>
<meta http-equiv="content-type" content="text/html; charset=GB2312" />
<meta http-equiv="content-language" content="zh-CN" />
<base target="_self" />
<style>
#bst {width:21px;}
input.memb {border:none;color:#0f0;background-color:#2f2f2f;font-size:20px;}
input.inst {border-bottom:1px solid #444;border-left:0px solid #0ff;color:#0f0;border-top:0px;border-right:0px;background-color:#0f0f0f;}
input.depo {border:none;color:#0f0;background-color:#0f0f0f;ime-mode:disabled;}
input.dep2 {border:none;color:#FE6;background-color:#1f311f;}
input.spzp {border:0px;color:#f00;background-color:#aa1;}
input.join {border:none;color:#030;background-color:#8a8a8a;font-size:14px;}
input.joi2 {border:none;color:#030;background-color:#8a8a8a;font-size:12px;}
select.depo {border:none;color:#0f0;background-color:#0f0f0f;}
input.zlxs {border:none;background-color:#cde;color:#00f;font-size:18px;}
div.zlxs {position:absolute;top:52px;left:417px;border:4px inset #b90;height:76px;width:150px;font-size:22px;background-color:#cde;color:#a10;overflow:hidden;display:none;}

.skin0 {
position:absolute;
text-align:left;
width:138px;
border:3px solid black;
background-color:menu;
font-family:Verdana;
line-height:20px;
cursor:default;
visibility:hidden;
}
.skin1 {
cursor:default;
font:menutext;
position:absolute;
text-align:left;
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
width:138px;
background-color:menu;
border:3px solid buttonface;
visibility:hidden;
border:3px outset buttonhighlight;
}
.rstymenu { padding-top:5px;padding-left:15px;padding-right:10px;font-size:12px;width:78px; }
.rstymenu2{ padding-top:5px;padding-left:15px;padding-right:10px;font-size:14px; }
.rstytdmenu{font-size:14px;color:#080;}
</style>
<title><?php echo $title; ?></title>

<script language="javascript">
<!--
/*****************************
* 初始化一个xmlhttp对象
*****************************/
function InitAjax() {
  var ajax=false;
  try {
    ajax = new ActiveXObject("Msxml2.XMLHTTP");
  } catch (e) {
    try {
      ajax = new ActiveXObject("Microsoft.XMLHTTP");
    } catch (E) {
      ajax = false;
    }
  }
  if (!ajax && typeof XMLHttpRequest!='undefined') {
    ajax = new XMLHttpRequest();
  }
  return ajax;
}

// Right menu
var menuskin = "skin1"; // skin0, or skin1
var display_url = 0; // Show URLs in status bar?
function showmenuie5() {
  var rightedge = document.body.clientWidth-event.clientX;
  var bottomedge = document.body.clientHeight-event.clientY;
  if (rightedge < right_menu.offsetWidth)
    right_menu.style.left = document.body.scrollLeft + event.clientX - right_menu.offsetWidth;
  else
    right_menu.style.left = document.body.scrollLeft + event.clientX;
  if (bottomedge < right_menu.offsetHeight)
    right_menu.style.top = document.body.scrollTop + event.clientY - right_menu.offsetHeight;
  else
    right_menu.style.top = document.body.scrollTop + event.clientY;
right_menu.style.visibility = "visible";
  return false;
}
function hidemenuie5() {
  right_menu.style.visibility = "hidden";
}

function highlightie5() {
  if (event.srcElement.className == "rstymenu") {
    event.srcElement.style.backgroundColor = "highlight";
    event.srcElement.style.color = "white";
    if (display_url)
      window.status = event.srcElement.url;
  }
}

function lowlightie5() {
  if (event.srcElement.className == "rstymenu") {
    event.srcElement.style.backgroundColor = "";
    event.srcElement.style.color = "black";
    window.status = "";
  }
}

function jumptoie5() {
  if (event.srcElement.className == "rstymenu") {
    if (event.srcElement.disabled != true) {
      if (event.srcElement.getAttribute("target") != null) {
        var thewinsize=eval(event.srcElement.getAttribute("winsize"));
        window.open(event.srcElement.url, event.srcElement.getAttribute("target"), thewinsize);
      } else {
        window.location = event.srcElement.url;
      }
    }
  }
}

// Right menu End
//-->
</script>
</head>
<body>
<?php
include_once 'head_auth.php';
?>

⌨️ 快捷键说明

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