我的服务器上有一个名为“pform.php”的文件,这就是它的样子:
<form action="password.php" method="get">
<input type="text" name="password13"/>
<input type="submit" value="Submit!"/>
</form>
我将它转移到另一个名为“password.php”的文件中,这就是它的样子:
<?php
$text=$_GET["password13"];
$right="You entered the right password!";
$wrong="You entered the wrong password!";
if($password13)=="test"
{
echo $right;
}
else
{
echo $wrong;
}
?>
我可以在第7行更改哪些内容使其比较密码“test”并返回true或false?
谢谢!
答案 0 :(得分:6)
if($password13)=="test"
应
if($text=="test")
答案 1 :(得分:1)
这很简单:
$trueOrFalse = ($password13=="test");
if ($trueOrFalse) {
...
或直接将其放入if子句:
if ("test" === $password13)
{
...
答案 2 :(得分:0)
if ($text == "test")
不
if ($text) == "test"