logout.php3
上传用户:xuanqunsh
上传日期:2007-01-04
资源大小:58k
文件大小:1k
- <?php
- # ---------------------------------------------------------------
- # phpop
- # A WWW based POP3 basic mail user agent (MUA)
- # Copyright (C) 1999 Padraic Renaghan
- # Licensed under terms of GNU General Public License
- # (see http://www.renaghan.com/phpop/source/LICENSE)
- # ---------------------------------------------------------------
- # $Id: logout.php3,v 1.4 2000/04/14 13:57:10 prenagha Exp $
- # ---------------------------------------------------------------
- include("poprepend.inc");
- page_open(array( "sess" => "pop_sess"
- ,"auth" => "pop_auth"));
-
- # close up the pop connection
- $pop3->quit;
- # kill the user login authorization object
- $auth->unauth();
- # kill the session object
- $sess->delete();
- $tpl->define(array(
- standard => "common.standard.tpl",
- body => "logout.body.tpl"
- ));
- set_standard("logout", &$tpl);
- $tpl->parse(BODY, "body");
- $tpl->parse(MAIN, "standard");
-
- $tpl->FastPrint();
- ?>