这是我的表单,它使用 login.php 来检查用户是否已注册等。
<form action="login.php" method="post" target="SHOW">
<ul id="login">
<li>
Username:<br />
<input type="text" name="username">
</li>
<li>
Password:<br />
<input type="password" name="password">
</li>
<li>
Submit:
<br />
<input type="submit" name="log in">
</li>
<li>
<a href="../../register.php">Register</a></li>
</ul>
</form>
<iframe id="iframe" name="SHOW" scrolling="no"></iframe>
我的困境源于我用来显示错误消息的 iframe 标签。如果用户已注册,我想将他重定向回 index.php,正如您在 PHP 末尾看到的那样 ---> header('Location: index.php');
问题是 iframe 不允许重定向。所以,我想将目标从 ---> target="SHOW" 更改为 target="_top" 或类似的东西。因此,用户在成功登录后会被重定向,而无需使用任何 JavaScript。
我未能完成此任务--> $href->removeAttribute('target'); $href->setAttribute("target", "_top");
这是login.php。
<?php
include 'core/init.php';
if(empty($_POST) === false){
$username = $_POST['username'];
$password = $_POST['password'];
if(empty($username) || empty($password) === true){
$errors[] = 'You need to enter a username and password';
} else if (user_exists($username) === false){
$errors[] = 'We can\'t find that username. Have you registered?';
} else if (user_active($username) === false){
$errors[] = 'You haven\'t activated your account!';
} else {
$login = login($username, $password);
if($login === false){
$errors[] = 'That username/password combination is incorrect';
} else {
$_SESSION['user_id'] = $login;
$href->removeAttribute('target');
$href->setAttribute("target", "_top");
header('Location: index.php');
exit();
}
}
print_r($errors);
}
?>