This tutorial tell you how to create your own captcha image.
You should follow these steps:
Copy the code below and save it as "create_image.php"
<?php
//Start the session so we can store what the security code actually is
session_start();
//Send a generated image to the browser
Create_Captcha_Images();
exit();
function Create_Captcha_Images()...