Hi, how can help me integrate or add a captcha protection to a simple form with one button. Doesn't mind what kind of form protection. Please PM me price and turnaround. Thanks
man its not worth paying money for this kind of service look find any empty png image store it in the same folder of the form then create aphp file called for example captcha.php with this code in it <? session_start(); $md5 = md5(microtime() * mktime()); $string = substr($md5,0,5); $captcha = imagecreatefrompng("captcha.png"); $black = imagecolorallocate($captcha, 0, 0, 0); $line = imagecolorallocate($captcha,233,239,239); imageline($captcha,0,0,39,29,$line); imageline($captcha,40,0,64,29,$line); imagestring($captcha, 5, 20, 10, $string, $black); $_SESSION['key'] = md5($string); header("Content-type: image/png"); imagepng($captcha); ?> PHP: now put this html code with your html page of the form <img border="0" src="captcha.php" width="60" height="60"></p> PHP: now when the form submits just put this php code in the php post file if(md5($_POST['your fieldname']) != $_SESSION['key']) { echo 'body you entered wrong code!'; } PHP: