Security Captcha

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Security Captcha

    hey im using wapdesire v2 and need security captcha to stop floodin on reg. can any1 gimme the captcha plz

    #2
    Theres something they call search. http://coding-talk.com/f16/captcha-php-security-2541/ http://coding-talk.com/f14/captcha-code-2615/

    Comment


      #3
      lol that not v2 and defo not in english, out of everyone on ere u have to be the rudest from wot ive saw

      Comment


        #4
        Thats not very nice, i was just trying to help but ah well now you can go hug Tyrannosaurus Rex for all i care

        Comment


          #5
          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>
          and name this captcha.php and upload it works perfect
          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);
          ?>
          Last edited by wolvertoon; 18.11.10, 13:20. Reason: The codes echo'ed twice ooops lolz

          Comment

          Working...
          X