📄 global.php
字号:
<?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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -