Can you help me find captcha code?

criss25

New member
Registered
Joined
Aug 2, 2013
Messages
1
Points
0
Can you help me find captcha code? I definitely need my site
 

Peter

Member
Joined
Jul 7, 2012
Messages
59
Points
0
Can you help me find captcha code? I definitely need my site
You can download script cool captcha here

Simple to use it, follow steps to apply
Code:
session_start();
$captcha = new SimpleCaptcha();
// Change configuration...
//$captcha->wordsFile = null;           // Disable dictionary words
//$captcha->wordsFile = 'words/es.txt'; // Enable spanish words
//$captcha->session_var = 'secretword'; // Change session variable
$captcha->CreateImage();
validate form when users sending information via form
Code:
if (empty($_SESSION['captcha']) || strtolower(trim($_REQUEST['captcha'])) != $_SESSION['captcha']) {
    return "Invalid captcha";
}
Hope it's useful to you!
 
Older Threads
Replies
11
Views
6,891
Replies
3
Views
3,308
Newer Threads

Latest postsNew threads

Latest Hosting OffersNew Reviews

Sponsors

Tag Cloud

You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an alternative browser.

Top