index.php

来自「自己实现一个实用的商店应用系统」· PHP 代码 · 共 41 行

PHP
41
字号
<?php
/****************************************************
 *
 * Editor by Shuweich
 * QQ:1502384,E-mail:root@shuweich.net
 * Date : 2006.11.16
 * 广州市桢磊绣花设备有限公司
 * 
****************************************************/
include_once 'header.php';

// 为审核操作而设的四个Java脚本函数
echo '
<script language="javascript">

var op_de0="";

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;
}

</script>
';

echo "<center><span style='font-size:24px;'>营销团队架构图</span></center>";
include_once '../../footer.php';
?>

⌨️ 快捷键说明

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