我使用登录脚本(真的没什么特别的)导致一个小的成员区域 - 我想知道是否可以更改这一点,以便一旦提交用户凭据,受限制的将在新窗口中打开?
这是我的代码示例:
<?php
define("_VALID_PHP", true);
require_once("init.php");
if ($user->logged_in)
redirect_to("welcome.php");
if (isset($_POST['doLogin']))
: $result = $user->login($_POST['username'], $_POST['password']);
if ($result)
: redirect_to("welcome.php");
endif;
endif;
?>
这里有表格:
<form action="" method="post" id="login_form" name="login_form">
<h1>Login</h1>
<div style="text-align:center; color:#F00; margin-bottom:20px;" id="msgholder-alt"><?php print $core->showMsg;?></div>
<p>
<label for="username" class="uname" > Your Username:</label>
<input id="username" name="username" required type="text" />
</p>
<p>
<label for="password" class="youpasswd"> Your Password: </label>
<input id="password" name="password" required type="password" />
</p>
<p class="login button">
<input type="submit" value="Login" name="submitlogin" />
<input name="doLogin" type="hidden" value="1" />
</p>
</form>
非常感谢一些帮助 - 谢谢。