我有这样的 PHP 代码:(用于退出 - 与其他用于不同功能的 php 处理程序一起位于 php 页面中,并且该文件包含在 index.php 等页面或其他相关页面中。)
if(isset($_POST['signout'])) { // logout button
// Clear and destroy sessions and redirect user to home page url.
$_SESSION = array();
session_destroy();
// redirect to homepage (eg: localhost)
header('Location: http://localhost/index.php');
}
我通常使用<form action="index.php" method="post">
当前包含该功能的地方以及<input type="submit" name="signout">
此类事情,但这次我想使用锚标签,例如:
<a href="" >Sign Out</a>
用于退出。
任何人都愿意展示一个示例代码,该代码将触发将由上面给定的 PHP 代码处理的提交。
jQuery 或 Javascript 解决方案都可以。我只想看一个关于它是如何工作的完整示例。