⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 logout.php3

📁 PHPLOB注释详细版 使用模板技术的好帮手 PHP最有用的东东了
💻 PHP3
字号:
<?php // include("prepend.php3");// We use the following features://  sess   for session variables//  auth   for user authentication (yes, you need to be logged in to log out :-)  page_open(array("sess" => "Example_Session", "auth" => "Example_Auth"));?><html><body bgcolor="#ffffff">  <a href="<?php $sess->purl("index.php3") ?>">Load</a> the simple page again.<br>  <a href="<?php $sess->purl("showoff.php3")?>">Load</a> a more complex example (login as kris, password test).<br>  <a href="<?php $sess->purl("defauth.php3")?>">Load</a> the default auth example.<br>  <a href="<?php $sess->purl("test.php3")?>">Show</a> your phpinfo() page.<br>  <h1>Logout</h1>    You have been logged in as <b><?php print $auth->auth["uname"] ?></b> with  <b><?php print $auth->auth["perm"] ?></b> permission. Your authentication  was valid until <b><?php print date("d. M. Y, H:i:s", $auth->auth["exp"])  ?></b>.<p>    This is all over now. You have been logged out.</body></html><?php  $auth->logout();  page_close(); ?><!-- $Id: logout.php3,v 1.1.1.1 2000/04/17 16:40:06 kk Exp $ -->

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -