我无法弄清楚如何创建一个会破坏 php 会话的 javascript 函数。我有一个可点击的链接,它将调用一个名为 destroyphpsess 的函数。我认为到目前为止一切都很好。现在我需要定义 javascript 函数。这是我到目前为止的代码......
if ($_SESSION['color'] == "") {
$var = "<a href='JavaScript:newPopup(\"http://www.yourfantasyfootballreality.com/register.php\");' class='two'>Register</a> | <a href='JavaScript:newPopup(\"http://www.yourfantasyfootballreality.com/signin.php\");' class='two'>Sign In</a>";
} else {
$var = "Hello, ".$_SESSION['color'] ."! | " . "<a href=\"http://www.yourfantasyfootballreality.com/index.php\" onclick=\"destroyphpsess()\" class='two'>Log Out</a>";
}
echo $var;
现在我需要定义 javascript 函数。这是我遇到麻烦的地方。这是我到目前为止的基本轮廓......
function destroyphpsess()
{
<?php
session_destroy();
?>
}
如果有人可以帮助我使用该功能,我将不胜感激!谢谢。