prepend.php3

来自「PHPLOB注释详细版 使用模板技术的好帮手 PHP最有用的东东了」· PHP3 代码 · 共 36 行

PHP3
36
字号
<?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 + =
减小字号Ctrl + -
显示快捷键?