0

我查看了stackoverflow,但只能找到sql的东西。如果已设置通用密码和用户名持有者,如何让 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");
}
4

2 回答 2

0

你的代码看起来不错。它只是缺少Location:标题中的

<?php

if($_POST['username'] == 'Username' && $_POST['password'] == 'Password')
    header('Location: thesite.url');

?>
于 2013-04-30T23:50:36.463 回答
0

对于 HTTP 中的重定向,有Location标头。您错过了键入标题的名称Location:. 将行更改为:

header("Location: http://thesite.com/...");
于 2013-04-30T23:50:56.433 回答