/*Create a background for the CAPTCHA image in your favorite image program, 91x23 is a good size, save it as captcha.jpg and upload the image to the scripts folder*/
/*OPEN submit.php*/
/*FIND*/
if(!$_GET[a])
{
/*BELOW THAT PUT*/
session_start();
/*FIND*/
elseif($_GET[a]==\"submit\")
{
/*BELOW THAT PUT*/
session_start();
if($_POST[captcha]!=$_SESSION[key]){die(header(\"Location: $script_url/msgs.php?msg=invalidcaptcha\"));}
/*SAVE submit.php*/
/*OPEN msgs.php*/
/*FIND*/
elseif($_GET[msg]==\"wrongimgfiletype\"){$msg=\"The image file type that you tried to upload is not allowed. Click here to go back and use a different image.\";}
/*BELOW THAT PUT*/
elseif($_GET[msg]==\"invalidcaptcha\"){$msg=\"The text you typed for the image is invalid. Click here to go back and type it again.\";}
/*SAVE msgs.php*/
/*OPEN template-submit.html*/
/*FIND*/
Description:
%description%
/*BELOW THAT PUT*/
Type the image text:
/*SAVE template-submit.html*/
/*SAVE THE FOLLOWING AS captcha.php AND PLACE IN THE SCRIPTS FOLDER*/