0

我需要一些帮助。

我有一个联系表格,我想在其中添加一些验证码,没有 GD 库。我添加了一些图像作为指南,但现在有静态图像。我想要做的是循环输出与隐藏字段中的代码(随机数)匹配的图像,例如,如果随机数是“18301”,则会为每个数字显示适当的图像,这里到目前为止是我的代码:

<label for="captcha">Type the code you see (*):<br />
    <?php (do a loop here){ ?>
<img src="images/0<?php echo $num; ?>.gif" width="18" height="30" />
<?php } ?>  

     <img src="images/00.gif" width="18" height="30" />
         <img src="images/01.gif" width="18" height="30" />
         <img src="images/08.gif" width="18" height="30" />
         <img src="images/03.gif" width="18" height="30" />
         <img src="images/00.gif" width="18" height="30" />
         <img src="images/01.gif" width="19" height="30" /> =</label>
    <span id="spryCaptcha">
    <input type="text" name="captcha" id="captcha" tabindex="70" />
    <input name="hiddenCode" type="hidden" value="<?php echo rand(000000,999999); ?>"/>

我怎样才能使它起作用,以便每次都会出现正确的图像并检查用户的输入是否与他/她每次看到的代码相匹配?

4

2 回答 2

0

您应该在循环之前初始化随机数:

<?php
    $random = (string)rand(0,999999);
?>
<label for="captcha">Type the code you see (*):<br />
    <?php for($i=0; $i<strlen($random); $i++){ ?>
        <img src="images/0<?php echo $random{$i}; ?>.gif" width="18" height="30" />
    <?php } ?>  
</label>
<span id="spryCaptcha">
<input type="text" name="captcha" id="captcha" tabindex="70" />
<input name="hiddenCode" type="hidden" value="<?php echo $random ?>"/>

但是您应该将其保存在会话中并稍后检查(因为隐藏字段是 0 安全性):

session_start()在您的页面顶部调用

<?php
    $random = (string)rand(0,999999);
    $_SESSION['captcha'] = $random;
?>
<label for="captcha">Type the code you see (*):<br />
    <?php for($i=0; $i<strlen($random); $i++){ ?>
        <img src="images/0<?php echo $random{$i}; ?>.gif" width="18" height="30" />
    <?php } ?>  
</label>
<span id="spryCaptcha">
<input type="text" name="captcha" id="captcha" tabindex="70" />

并在下一页检查您的$_POST['captcha']反对$_SESSION['captcha']

仍然,这是 0 安全性,因为可以读取图像名称。

于 2012-09-14T08:19:57.080 回答
0

尝试使用reCAPTCHA。它可以在没有 GD 库的情况下使用。它从外部服务加载验证码图像并使用公钥加密进行验证。所以没有内部生成验证码图像。非常容易使用。

例如:

前端 :

<html>
    <body> <!-- the body tag is required or the CAPTCHA may not show on some browsers -->
      <!-- your HTML content -->

      <form method="post" action="verify.php">
        <?php
          require_once('recaptchalib.php');
          $publickey = "your_public_key"; // you got this from the signup page
          echo recaptcha_get_html($publickey);
        ?>
        <input type="submit" />
      </form>

      <!-- more of your HTML content -->
    </body>
  </html>

后端验证:

<?php
  require_once('recaptchalib.php');
  $privatekey = "your_private_key";
  $resp = recaptcha_check_answer ($privatekey,
                                $_SERVER["REMOTE_ADDR"],
                                $_POST["recaptcha_challenge_field"],
                                $_POST["recaptcha_response_field"]);

  if (!$resp->is_valid) {
    // What happens when the CAPTCHA was entered incorrectly
    die ("The reCAPTCHA wasn't entered correctly. Go back and try it again." .
         "(reCAPTCHA said: " . $resp->error . ")");
  } else {
    // Your code here to handle a successful verification
  }
  ?>

欲了解更多信息,请访问:https ://developers.google.com/recaptcha/docs/php

于 2014-04-28T07:37:56.703 回答