![]() |
shopping cart (0 item) |
||||||
|
|||||||
![]() ![]()
|
Captcha image verificationA 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. <?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. COMMENTS
Kelvin Baggs Hi I have got your Captcha code working just great on my first web site and when I copied the code to the 2nd site, the image is display ok, but it fails in the comparision test. I have tried to output $_SESSION["vercode"] outside the captcha.php file but it seems like it is not set. 1st Site: http://www.******.com/admin/email/contact.php 2nd Site: http://www.******.com.au/newsite/admin/email/contact.php Thanks for any help in advance. regards ------------------- Veselin: do you have both websites on the same hosting account? It is possible that website 2 does not support SESSIONs Joe Great script, Thanks Gil Thank you so much! it works! Astiak $font_size = 14; The maximum font size supported by imagestring() is 5 unless you load a font using imageloadfont(). Otherwise, great script :). carmelo portugues just created a non-profit organization, and would like to have a captcha on my donation page or index page..would like to know how much is your fee...thank you Jeff Wow, thank you for the help getting this to work with my guest book. It was a small fee to pay, and you got the work done fast! :) niikii i saw a X , can't see image. any idea? Rion Massie Hey thanks for this bit of code. It works perfectly! Dave I need you to add this script to my contact form for me. Not sure how to do it. I can easily cut and paste and do a FTP upload of the script to my server. here is my current form. www.listedgreen.com/contact.html I need it to work with my current PHP form that has a field required script too. See my code. Is it PayPAL time? ----------------------------- Veselin: We should change contact.html to contact.php. Please, send me FTP login info and once I confirm that it can be done you can paypal the money. TheGeekster Hi I am trying using this script in a guest book. Before I put this in, it ran www.*****.com/tg.pl. How do I edit submit.php to run this?? Thanks! Awesome script BTW!!! POST A COMMENT
|