i have a client who wants to implement a CAPTCHA verification on the forms on his website. i found the script to do this here:
i have it so it creates the image but it does not output the rest of the script instead it shows the code. here is the page i am working on:
and i also have a txt file of the same page so you can see the code with out me posting the whole page here:
Please help.
Thank you in advance.
i have it so it creates the image but it does not output the rest of the script instead it shows the code. here is the page i am working on:
Code:
<TR>
<TD colSpan=3 height=40>
<div style="border: solid 1px #4f8ac4;">
<img src="picture.php" />
</div>
<? include("verification_image.class.php");
$image = new verification_image();
// do this when the form is submitted
echo $image->validate_code($_SESSION['verification_key']) ? "true" : "false"; ?>
</TD>
</TR>
and i also have a txt file of the same page so you can see the code with out me posting the whole page here:
Please help.
Thank you in advance.