logout.php
上传用户:yantgcom
上传日期:2013-07-19
资源大小:478k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

PHP

  1. <?php
  2.  include ("../inc/db.php");
  3.  include ("../inc/phpmkrfn.php");
  4.  include ('../inc/xtpl.php');
  5.  include ('../log/log.php'); 
  6. session_start();
  7. $conn = phpmkr_db_connect(HOST, USER, PASS, DB, PORT);
  8. operlogout($_SESSION["uid"],$conn);
  9. session_unset();
  10. header("location:../index.php");
  11. ?>