If you insist on using Captchas (I guess there are a few good reasons), please consider the form field ID that you use. With today’s modern browsers automated drop down windows with previously used field items are a common occurrence. They are there to make your job easier, less typing, quicker to fill out forms, and great for repeat form filling.
When filling out a form where you need to see the near by content below or above the field, similar to the way many Captcha forms are set up, those instant drop down windows suddenly become a major pain. Who’s fault is that?
It’s Not the Browsers Fault
You could blame your browser for dropping down that list of already used Captchas, but it’s not the browsers fault really. It’s the fault of the developer, and I will go on to accuse Google of making this error as well. I had plenty of experience with their Captcha earlier today, see why. I basically made Google think I was being bad, so I had to keep confirming by means of Captcha that I was good/human. Google, sadly, does not give their Captcha form field a unique ID, and that is their bad move.
The problem with Google’s Captcha form, and many others, is that they use the field identifier “captcha”. That ID in a form is by no means unique, and my drop down window of previously used Captchas automatically blocks the Captcha image right after I type the first letter. The only way for me to fill out the field now is by either memorizing the image, or writing it down. That is very annoying to say the least, and if you know me, I don’t need another reason to hate captchas.
Making a Captcha Unique
The tip here? Just simply stop giving the form field ID for the Captcha “captcha”, and give it something unique like “bwicaptcha” or something like that. The more unique, the less likely someone will curse your name.

I’m with you, Robert.
Personally, I avoid using captchas if at all possible. Most of them are just much to annoying to use.
This is an excellent tip, though. So simple it seems daft. I just hope the right people read it.
Yes, very annoying, most of them are completely inaccessible to people with visual problems.
I hate catchas and I hate using them.
I’m just using very simple image as catcha with a piece of code in PHP
————
require_once “encode.php”;
$decid = urldecode(md5_decrypt($_REQUEST['id'], $_REQUEST['key']));
header(“Content-type: image/png”);
$img = imagecreatetruecolor(65, 20);
$white = imagecolorallocate($img, 255, 255, 255);
// $brown = imagecolorallocate($img, 255, 51, 51);
$brown = imagecolorallocate($img, 255, 51, 0xFF6600);
imagefill($img, 0, 0, $brown);
imagestring($img, 3, 6, 3, $decid, $white);
imagepng($img, ”, 7.5);
imagedestroy($img);
———–
hate them but if you dont use them you end up becoming afre email server
a free email server