Captcha image verification
posted on June 24, 2006, 12:47 am
A good way to avoid automatic form submissions when creating a web form is to add some kind of verification. One of the best ways is to use an image verification, called also captcha. What it does is to dynamically create an image with a random string displayed on it. Then visitor is asked to type that string in a text field and once the form is submitted it checks if the string on the image matches the one inputted by the user. Because there is no easy way to read a text from an image (image recognition) this is a good way to protect your web forms from spammers.
For doing this CAPTCHA I would suggest using a session variable where you store the string generated and displayed on that dynamically generated image.
<?php
session_start();
$text = rand(10000,99999);
$_SESSION["vercode"] = $text;
$height = 25;
$width = 65;
$image_p = imagecreate($width, $height);
$black = imagecolorallocate($image_p, 0, 0, 0);
$white = imagecolorallocate($image_p, 255, 255, 255);
$font_size = 14;
imagestring($image_p, $font_size, 5, 5, $text, $white);
imagejpeg($image_p, null, 80);
?>
Save this code in a file called captcha.php. What this script does is to generate a random number from 10000 to 99999 and then assign it to $_SESSION['vercode']. Then it generates a 25x65 pixels image with black background and white text using size 14. So if you upload that captcha.php file on your web site and open http://www.site.com/captcha.php you will see an image displaying random integer. You will receive a new random integer every time you refresh that page.
Next we need to create our web form.
<form action="submit.php" method="post">
Comment: <textarea name="coment"></textarea><br>
Enter Code <img src="captcha.php"><input type="text" name="vercode" /><br>
<input type="submit" name="Submit" value="Submit" />
</form>
Above code will create a form with a single textarea box, randomly generated image using the captcha.php script and a text field where you will have to enter the verification code.
All we have to do now is to make the submit.php script which will check if the verification code you enter matches the one that has been randomly generated.
<?php
session_start();
if ($_POST["vercode"] != $_SESSION["vercode"] OR $_SESSION["vercode"]=='') {
echo '<strong>Incorrect verification code.</strong><br>';
} else {
// add form data processing code here
echo '<strong>Verification successful.</strong><br>';
};
?>
Did you check our Contact Form script?
For a small fee we can make any of your web forms have a CAPTCHA verification. Let us know if you need help with it.
| posted on March 10, 2010, 6:44 pm
|
|
| elby posted on March 9, 2010, 6:50 am
|
| fdfhdfh |
| elby posted on March 9, 2010, 6:49 am
|
| fdfhdfh |
| Tjerk posted on March 2, 2010, 1:52 am
|
I do not get the image back.
What did i do wrong? use IIS7.5.
Thanks. |
| Naveen posted on February 25, 2010, 2:48 pm
|
| sorry dear, but the code you provided doesn't work |
| Naveen posted on February 25, 2010, 2:47 pm
|
| sorry dear, but the code you provided doesn\'t work |
| Naveen posted on February 25, 2010, 2:47 pm
|
| sorry dear, but the code you provided doesn't work |
| Naveen posted on February 25, 2010, 2:47 pm
|
| sorry dear, but the code you provided doesn't work |
| Meet posted on February 22, 2010, 1:21 pm
|
where i will get "add form data processing code here" as per instructions
|
| Iratze posted on February 19, 2010, 11:17 am
|
| Good morning. Hey Garrett, the new record sounds great I'm gonna try and make it to the next show around here, You cats are outta sight. Help me! Need information about: Dish television. I found only this - <a href="http://altewelt.bbaw.de/Members/Dish/dish-satellite-tv-internet">dish satellite tv internet</a>. Dish, you can bother to shows, dish soundtracks and bamboo fourths to provide yourself the famed head of ceremony. Pricepricing is another final pepper for purporting the books, dish. Thanks for the help ;-), Iratze from Guinea. |