我需要一些帮助。
我有一个联系表格,我想在其中添加一些验证码,没有 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); ?>"/>
我怎样才能使它起作用,以便每次都会出现正确的图像并检查用户的输入是否与他/她每次看到的代码相匹配?