<?php
/**************************************************************/
/*
/* SoftwareName: SYC V1.0 善水网站内容管理系统
/* Web: http://www.61108.CN
/* Copyright (C) 2009-2020 善水 版权所有
/* 联系QQ:106702860
/*
/* 2009-7-10 网站后台退出页 logout.php
/**************************************************************/
session_start(); //确认开启SESSION
unset($_SESSION['user']['username']);
//session_unset();//注销服务器上的所有变量
//session_destroy();//销毁所有数据登记
echo "<script>alert('成功退出!');window.location.href='".$_SERVER['HTTP_REFERER']."';</script>";
?>