PHP链接到session_destroy

时间:2010-05-22 19:13:46

标签: hyperlink php

我需要创建一个链接,点击后将在php中运行:

session_destroy();

我知道如何在html中建立链接,但我不知道如何使它与php交互。谢谢你的帮助。

3 个答案:

答案 0 :(得分:14)

例如,您希望使用此脚本进行注销。

你的HTML必须是“index.php”(只是一个例子)

<a href="logout.php">Log Out</a>

然后在“logout.php”

session_start(); //to ensure you are using same session
session_destroy(); //destroy the session
header("location:index.php"); //to redirect back to "index.php" after logging out
exit();

如果你想使用JavaScript,我也可以告诉你吗?

答案 1 :(得分:1)

<?php
// logout.php
session_destroy();

然后链接到logout.php

答案 2 :(得分:0)

您需要做的就是调用一个调用该函数的PHP脚本。