一个简单安全的PHP验证码类 附调用方法(2)

<?php session_start(); require 'secoder.class.php'; //先把类包含进来,实际路径根据实际情况进行修改。 $vcode = new YL_Security_Secoder(); //实例化一个对象 $vcode->entry(); ?>

2.检查验证码是否正确

<?php session_start(); require 'secoder.class.php'; //先把类包含进来,实际路径根据实际情况进行修改。 $vcode = new YL_Security_Secoder(); //实例化一个对象 //$vcode->entry(); $code = $_GET['code']; echo $vcode->check($code); //$_SESSION['code'] = $vc->getCode();//验证码保存到SESSION中 ?>

3.验证码输入框调用页面

<img src='https://www.jb51.net/images/tishis2.gif'> 单击图片重新获取验证码<br> <a href="#"><img src="https://www.jb51.net/code.php" />

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/31fa94cf3b0c018d8fc536a6d5199384.html