php密码,比较,返回true或false

时间:2011-12-01 16:32:51

标签: php passwords

我的服务器上有一个名为“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?

谢谢!

3 个答案:

答案 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"