我有一个允许用户停用其帐户的功能。我想要它,以便当他们点击停用我的帐户链接时,会在iframe中打开以刷新整个浏览器或刷新父页面,以便网站识别出他们不再登录?
这是iframe中的链接:
<a href="close_account.php?account=<?php echo $_SESSION['user_id']; ?>">De-activate My Account & Profile</a>
这是我的功能代码:
<?php
require_once("includes/session.php");
require_once("includes/functions.php");
require('includes/_config/connection.php');
hide_account($users); ?>
所以这一切都发生在iframe中,一旦用户点击按钮,他们就会被重定向到登录页面,但这会发生在iframe中,我不希望他们能够关闭iframe但仍然拥有自己的帐户从父页面登录,以便浏览器或页面需要以某种方式刷新,这将导致iframe关闭并自动重定向到登录页面?
任何建议都会很棒。感谢