Human Verification

Status
Not open for further replies.
Newbie Spellweaver
Joined
Aug 9, 2007
Messages
59
Reaction score
0
This is just a simple drop-down menu to determine if the registrant is human, it's simple, but it might be useful? Not as good as captcha, but yeah.

If the registrant does not select "Yes," they will get the message "You must be human to register."

You can edit this in the code.

Add this
Code:
}elseif($human == "No"){
echo '<center>You must be human to register.</center>';
exit();
and this
Code:
$human = $_POST['human'];
to register_do.php...and add this line to register.php
Code:
<tr><td class=list align=right>Are you human?</td><td class=list><select name="human">
                    <option value="No">No</option>
                    <option value="Yes">Yes</option>
                  </select></td></tr>
 
Custom Title Activated
Loyal Member
Joined
Apr 5, 2008
Messages
1,025
Reaction score
5
Re: [Release] Human Verification

nice haha
 
Status
Not open for further replies.
Back
Top