badlogin.php

来自「通达OA2007SE源代码 非常好的」· PHP 代码 · 共 16 行

PHP
16
字号
<?
  require './inc/config.php';
  require './inc/lib.php';
  error_reporting ((E_ALL ^ E_NOTICE));
  define ('SMARTY_DIR', './smarty/');
  require_once (SMARTY_DIR.'Smarty.class.php');
  $smarty = new Smarty ();
  $smarty->compile_dir = $temporary_directory;
  $smarty->security = true;
  $smarty->secure_dir = array ('./');
  $smarty->assign ('umLanguageFile', ($selected_language.'.txt'));
  $smarty->assign ('umLid', $lid);
  $smarty->assign ('umTid', $tid);
  $smarty->display ('neotech.net/bad-login.htm');
?>

⌨️ 快捷键说明

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