logout.php3
上传用户:xuanqunsh
上传日期:2007-01-04
资源大小:58k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

PHP

  1. <?php 
  2. # ---------------------------------------------------------------
  3. # phpop
  4. # A WWW based POP3 basic mail user agent (MUA)
  5. # Copyright (C) 1999  Padraic Renaghan
  6. # Licensed under terms of GNU General Public License
  7. # (see http://www.renaghan.com/phpop/source/LICENSE)
  8. # ---------------------------------------------------------------
  9. # $Id: logout.php3,v 1.4 2000/04/14 13:57:10 prenagha Exp $
  10. # ---------------------------------------------------------------
  11. include("poprepend.inc");
  12. page_open(array( "sess" => "pop_sess"
  13.           ,"auth" => "pop_auth"));
  14.   
  15. # close up the pop connection
  16. $pop3->quit;
  17. # kill the user login authorization object
  18. $auth->unauth();
  19. # kill the session object
  20. $sess->delete();
  21. $tpl->define(array(
  22.  standard   => "common.standard.tpl",
  23.  body       => "logout.body.tpl"
  24. ));
  25. set_standard("logout", &$tpl);
  26. $tpl->parse(BODY, "body");
  27. $tpl->parse(MAIN, "standard");
  28.   
  29. $tpl->FastPrint();
  30. ?>