Please note, this is a STATIC archive of website www.phpjabbers.com from 29 Oct 2018, cach3.com does not collect or store any user information, there is no "phishing" involved.
go top

Captcha image verification

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 https://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>';
};
?>

244 Comments to "Captcha image verification"

  • pankaj

    pankaj

    August 18, 2017 at 09:56 am

    Image is not displaying broken image error occur . Not loading image from captcha.php file

    • salil

      salil

      December 12, 2017 at 08:00 am

      change the $fontsize=5 because $fontsize can be from 1 to 5

    • salil

      salil

      December 12, 2017 at 08:04 am

      Before calling imagejpeg() function place header("content-type:image/jpeg")
      and after imagejpeg() put imagedestroy($image_p)

  • suresh kumar

    suresh kumar

    July 12, 2017 at 10:22 am

    why i can't fatch captcha image

  • Php Specialist

    Php Specialist

    July 3, 2017 at 13:35 pm

    Great tutorial. This tutorial was really helpful to create a captcha image validation on my business site. This is helpful to beginners . Thanks.

  • DEBJYOTI BHATTACHARJEE

    DEBJYOTI BHATTACHARJEE

    February 12, 2017 at 03:34 am

    SIR YOUR CODE IS GREAT..IT IS WORKING PERFECTLY IN MY WEBSITE THAT I BUILD

  • Bilal

    Bilal

    July 29, 2016 at 12:24 pm

    Working Code By Bilal

    <?php
    session_start();
    $code=rand(1000,9999);
    $_SESSION["code"]=$code;
    $im = imagecreatetruecolor(50, 24);
    $bg = imagecolorallocate($im, 22, 86, 165); //background color blue
    $fg = imagecolorallocate($im, 255, 255, 255);//text color white
    imagefill($im, 0, 0, $bg);
    imagestring($im, 5, 5, 5, $code, $fg);
    header("Cache-Control: no-cache, must-revalidate");
    header('Content-type: image/png');
    imagepng($im);
    imagedestroy($im);
    ?>





    <html>
    <head>
    <title>Test Form</title>
    </head>
    <body>
    <form action="validate.php" method="post">
    Enter Image Text
    <input name="captcha" type="text">
    <img src="captcha.php" /><br>
    <input name="submit" type="submit" value="Submit">
    </form>
    </body>
    </html>




    <?php
    session_start();
    if(isset($_POST["captcha"])&&$_POST["captcha"]!=""&&$_SESSION["code"]==$_POST["captcha"])
    {
    echo "Correct Code Entered";
    //Do you stuff
    }
    else
    {
    die("Wrong Code Entered");
    }
    ?>

  • Bilal

    Bilal

    July 29, 2016 at 09:29 am

    header ('Content-Type: image/png'); missing in captcha.php

  • Noer Kusuma Sari

    Noer Kusuma Sari

    March 30, 2016 at 07:26 am

    Thank you very much admin, your tutorial have been guide me to improve my php script..

  • devesh

    devesh

    September 16, 2015 at 08:46 am

    Is there any way to automate the capthca image for API web base or for GUI

    thanks
    devesh

  • charanjeet

    charanjeet

    July 12, 2015 at 19:57 pm

    plz display the view of code working

  • kyawswarwin

    kyawswarwin

    January 15, 2015 at 12:17 pm

    THis example is not work and found a error
    Parse error: syntax error, unexpected '$image_p' (T_VARIABLE) in C:xampphtdocsvercapindex.php on line 8
    help me bro and sis

Add your comment

Captcha
    • Free Scripts

      Add great new functionalities to your website with our Free Scripts collection.

      Free scripts
    • PHP Scripts

      Check our extensive collection of top-notch PHP Scripts that will enhance your website!

      Commercial PHP scripts