📄 prepend.php3
字号:
<?php/* * Session Management for PHP3 * * Copyright (c) 1998-2000 NetUSE AG * Boris Erdmann, Kristian Koehntopp * * $Id: prepend.php3,v 1.3 2000/07/12 18:25:44 kk Exp $ * */ if (!isset($_PHPLIB) or !is_array($_PHPLIB)) {# Aren't we nice? We are prepending this everywhere # we require or include something so you can fake# include_path when hosted at provider that sucks. $_PHPLIB["libdir"] = ""; }require($_PHPLIB["libdir"] . "db_mysql.inc"); /* Change this to match your database. */require($_PHPLIB["libdir"] . "ct_sql.inc"); /* Change this to match your data storage container */require($_PHPLIB["libdir"] . "session.inc"); /* Required for everything below. */require($_PHPLIB["libdir"] . "auth.inc"); /* Disable this, if you are not using authentication. */require($_PHPLIB["libdir"] . "perm.inc"); /* Disable this, if you are not using permission checks. */require($_PHPLIB["libdir"] . "user.inc"); /* Disable this, if you are not using per-user variables. *//* Additional require statements go below this line */# require($_PHPLIB["libdir"] . "menu.inc"); /* Enable to use Menu *//* Additional require statements go before this line */require($_PHPLIB["libdir"] . "local.inc"); /* Required, contains your local configuration. */require($_PHPLIB["libdir"] . "page.inc"); /* Required, contains the page management functions. */?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -