bbslogout.php
来自「bbs server linux平台下软件源码」· PHP 代码 · 共 26 行
PHP
26 行
<?php /** * This file handles user logout. * $Id: bbslogout.php,v 1.1 2002/08/12 18:54:32 flyriver Exp $ */ require("funcs.php"); if ($loginok!=1) {?><html><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><link rel="stylesheet" type="text/css" href="/bbs.css">没有登陆<br><br><a href="/index.html">快速返回</a></html><?php } else { bbs_wwwlogoff(); setcookie("UTMPKEY","",time()-360,"/"); setcookie("UTMPNUM","",time()-360,"/"); setcookie("UTMPUSERID","",time()-360,"/"); setcookie("LOGINTIME","",time()-360,"/"); header("Location: /index.html"); }?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?