Creating Captcha Code with PHP

A guide on how to create a simple Captcha using PHP to protect your website from spam and automated bots.

This article will show you how to use PHP to generate a random Captcha image, which helps improve website security by preventing spam from automated bots.

PHP Code

<?php
// Start session
session_start();

// Create a random Captcha string
$captcha_code = '';
$characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
$length = 6;

for ($i = 0; $i < $length; $i++) {
    $captcha_code .= $characters[rand(0, strlen($characters) - 1)];
}

// Store Captcha in session
$_SESSION['captcha'] = $captcha_code;

// Create Captcha image
$width = 150;
$height = 40;
$image = imagecreate($width, $height);

// Colors
$background_color = imagecolorallocate($image, 255, 255, 255); // White
$text_color = imagecolorallocate($image, 0, 0, 0); // Black

// Fill background
imagefilledrectangle($image, 0, 0, $width, $height, $background_color);

// Add Captcha string to image
$font_size = 20;
$angle = 0;
$x = 10;
$y = 30;
imagestring($image, $font_size, $x, $y, $captcha_code, $text_color);

// Output image to browser
header('Content-Type: image/png');
imagepng($image);

// Free up memory
imagedestroy($image);
?>

Detailed explanation:

  1. session_start(): Starts a session to store the Captcha code.
  2. The block of code generates a random Captcha string.
  3. $_SESSION['captcha']: Stores the Captcha string in the session.
  4. imagecreate(), imagecolorallocate(), imagefilledrectangle(), imagestring(): Functions to create the Captcha image with a white background and black text.
  5. header('Content-Type: image/png'): Sets the HTTP header to output a PNG image.
  6. imagepng($image): Outputs the image.
  7. imagedestroy($image): Frees up memory.

System Requirements:

  • PHP 7.0 or higher
  • PHP GD extension (enabled by default)

How to install the libraries needed to run the PHP code above:

Ensure you have PHP installed with GD support. You can check using the php -m command in the terminal.

Tips:

  • To increase complexity, consider adding curves, noise, or varying text colors and background.
  • Always store the Captcha string in the session for verification on the validation page.
Tags: PHP, Captcha


Related

How to pass Authentication Header Token when POSTing data to an API using PHP

A detailed guide on how to use cURL in PHP to pass `Authentication Header Token` when POSTing data to an API. This solution ensures secure and authenticated requests to the API.
Example of Singleton Pattern in PHP

A guide on the Singleton Pattern in PHP with a detailed example, explaining how to implement and use this design pattern in object-oriented programming.
How to Write Data to an Excel File Using PHP

A detailed guide on how to write data to an Excel file using PHP with the help of the PHPExcel library or the more modern PhpSpreadsheet library.
Paginate MySQL query results using PHP

A guide on how to paginate MySQL query results using PHP. This PHP code helps split data from MySQL into separate pages for better presentation.
How to retrieve Data from MySQL Database Using PHP

Learn how to retrieve data from a MySQL database using PHP. Includes detailed code and explanation on how to connect to and query a MySQL database.
Update data in MySQL using PHP

A guide on how to update data in MySQL using PHP. This code uses the UPDATE SQL statement to change information in a MySQL database efficiently.
Example of Object-Oriented Programming (OOP) in PHP

A guide with a basic example of Object-Oriented Programming (OOP) in PHP, explaining how to use classes and objects to structure code using OOP principles.
Get the last character of a string in PHP

Guide on how to use PHP to get the last character of a string. This PHP code helps in easily retrieving the final character of a text string in string manipulation operations.
Add watermark to image using PHP

A guide on how to add a watermark to an image using PHP with the GD library. This PHP script allows adding text or image watermark on top of the original image.
How to convert a Markdown string to HTML using PHP

A guide on how to convert a Markdown string to HTML in PHP using the `Parsedown` library, enabling you to display Markdown content effectively on your website.

main.add_cart_success