global.php
来自「php login script 还不错哦 可以多多参考 初学者参考」· PHP 代码 · 共 34 行
PHP
34 行
<?php/* $Id: global.php,v 1.65 2002/09/20 08:57:24 shaggy Exp $ */session_start(); // keep above lib/user.php and functions.phprequire_once 'functions.php';require_once '../config.php'; // before session_defaultsrequire_once 'session_defaults.php';require_once 'lib/user.php';$db = db_connect();$user = new User($db);/////////////////////////////////////////////////////////////////////////////////////////////////// function definitions followfunction begin_html() { begin_head(); begin_body();}function begin_head($doctype = true) { echo 'Enter your template head here';} // begin_headfunction begin_body() { echo 'Enter your template body here';} // begin_bodyfunction footer() { echo 'Enter your footer here';}?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?