bradleyberger Posted September 15, 2013 Share Posted September 15, 2013 Hi guys, first time posting! Im trying to come up with new captcha ideas, I'm considering having the form either have a checkbox or radio buttons that say "I am a human". Has anyone here tried this? Did you get spam? If I were to do something like this, do you think it might help if the labels for the radio buttons were opposite to the values and then the the form could only be submitted if you clicked (value of) robot. Like this. <label>Human</label> <input type="radio" value="robot"> <label>Robot</label> <input type="radio" value="human" checked> <?php if($spam_check === "human") {$error .= "no robots allowed"} Do you think something like this would trick most spam bots? Quote Link to comment Share on other sites More sharing options...
fastsol Posted September 15, 2013 Share Posted September 15, 2013 Yes it's been thought of a million times and no it doesn't work. Quote Link to comment Share on other sites More sharing options...
priyankagound Posted September 16, 2013 Share Posted September 16, 2013 One alternative is to use a hidden form field as a honeypot for bots. This field can be filled using an appropriate value from Javascript, or it can just be left blank. Either way, if the value isn't what you expect, then you can treat the submission as spam. This won't stop bots that are specifically targeting your site, but it will stop most of the common spam bots that just see a form and fill it out. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.