输入banner图图片脚本导航/分类

php注销代码(session注销)

代码如下:

<a href="logout.php" style="color:#F09;">注销</a>
<?php
session_start();
session_destroy();
header("location:index.php");
?>