hey im using wapdesire v2 and need security captcha to stop floodin on reg. can any1 gimme the captcha plz
Security Captcha
Collapse
X
-
Theres something they call search. http://coding-talk.com/f16/captcha-php-security-2541/ http://coding-talk.com/f14/captcha-code-2615/
-
Hi Darkness bud I got mine from here ages ago from first link creativitykills offered theres also another captcha which I also use & got from here coding talk ,hold on I will share what i got please say thanks it works for the wapdesire $main v2 script....
Add this in register.php where all the form part is above submit
Code:<b>Enter Code<br/> <img src=\"captcha.php\" alt=\"Code\"><br/> <input type=\"text\" name=\"vercode\" /></b><br>
Code:<? session_start(); header('content-type: image/jpeg'); $text = rand(10000,99999); $_SESSION["vercode"] = $text; $height = 25; $width = 65; $image_p = imagecreate($width, $height); $black = imagecolorallocate($image_p, 0, 0, 0); $white = imagecolorallocate($image_p, 255, 255, 255); $font_size = 14; imagestring($image_p, $font_size, 5, 5, $text, $white); imagejpeg($image_p, null, 80); ?>
Comment
Comment