我查看了stackoverflow,但我只能找到sql的东西。如果已经设置了php,那么如何通过php检查通用密码和用户名持有者,然后重定向到另一个页面?例如,如果帖子包含"用户名"用户名部分和"密码"对于密码部分,单击提交按钮时,它将重定向到标题中的页面。
<form action="" method="post">
Username:<input type="text" name="username" placeholder="Username" maxlength = "15"/>
Password: <input type="password" name="password" placeholder="Password" maxlength = "15"/>
<input type='image' alt='Submit' src='button.jpg' width='15%'/>
</form>`
if ($_POST["username"] == "Username" && $_POST['password']=="Password")
{
header("thesite");
}
答案 0 :(得分:0)
您的代码看起来不错。它只缺少标题中的Location:
<?php
if($_POST['username'] == 'Username' && $_POST['password'] == 'Password')
header('Location: thesite.url');
?>
答案 1 :(得分:0)
对于HTTP中的重定向,有Location
标头。您错过了标题Location
和:
的名称。将行更改为:
header("Location: http://thesite.com/...");