我的代码正好相反

时间:2012-12-27 06:48:49

标签: php

我的代码与我想要它做的相反,我试图创建一个简单的验证码,当我输入验证码上的值或字母和用户名/名称,如果验证码字母是正确的我希望它打印hi $name,you types the correct captcha并且如果输入的数据是错误的,我只是想要打印nooo。我的问题是,当我输入正确的字母或数据时,它打印noo,当我只是留空而不输入任何数据它的打印hi $name,you types the correct captcha

这是我的简单代码

<?php
session_start();
?>
<html>
<head>
<title> captcha test</title>
</head>
<body>
<?php
if(isset($_POST['submit'])){

if (isset($_SESSION['real'])) {
    $real = $_SESSION['real'];
}
$guess = $_POST['captcha'];
$name = $_POST['name'];
$real = "";
if ($real == $guess){

echo "hi $name,you types the correct name";
} 
else {

    echo "Nooo";
}

} else {
?>
<form action= 'index.php' method='post'>
your name:<input type = 'text' name='name' />
<br />
<img src= 'image.php'>  <input type='text' name='captcha' />
<br/>

<input type= 'submit' name='submit' value='go' />
</form>
<?php } ?>
</body>
</html>

我做错了什么?

2 个答案:

答案 0 :(得分:6)

在您之前为其分配实际值之后,您正在为变量$real指定空白值。

$real = "";

答案 1 :(得分:1)

您在$real=""条件检查

之前正在if