我有一个允许用户停用其帐户的功能。我想要它,以便当他们单击在 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 关闭并且它们会自动重定向到登录页面?
任何建议都会很棒。谢谢