PHP Simple Captcha by Hawk Enterprises
PHP Simple Captcha as demostrated here
Is one of the easiest programs to use when it comes to captcha. We use this code in a lot of our applications and find it to be one of the best solutions around. It’s as easy as this :
[php]
Yourpage.php
session_start();
$key=substr($_SESSION['key'],0,5);
$number = $_POST['number'];
if($number==$key){
// do captcha protected stuff here
}
?>
No Comments yet »
RSS feed for comments on this post. TrackBack URI
Leave a comment
You must be logged in to post a comment.















