- 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
and this
to register_do.php...and add this line to register.php
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();
Code:
$human = $_POST['human'];
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>