I got bored and decided to help out...somehow
...noticing there was a bot banned i decided to look it up...
Bots fill in all the text fields on the sign-up sheet, right?
since they fill in all parts of the form...
a good way of detecting whether or not a bot has subscribed is to add a dummy text field to the form and hide it from general view using CSS...
The Dummy Text is supposed to be filled out by the Bot and not the reader...
you then just check to see if there is any content in the hidden field....
If there is then ya, it's most likely a bot...
idk if this will help but i found a Dummy Text Generator: click here
The only problem is that if a visitor uses text only browsers...
they can see the fake field, you need to make sure they do not fill it in.
The best way to do this is to use the alt attribute of the image to tell the user not to fill it in.
The form field - It is called 'check'
The CSS used to hide the field:
If you don't believe me check my reference...
Source: click here
...noticing there was a bot banned i decided to look it up...
Bots fill in all the text fields on the sign-up sheet, right?
since they fill in all parts of the form...
a good way of detecting whether or not a bot has subscribed is to add a dummy text field to the form and hide it from general view using CSS...
The Dummy Text is supposed to be filled out by the Bot and not the reader...
you then just check to see if there is any content in the hidden field....
If there is then ya, it's most likely a bot...
idk if this will help but i found a Dummy Text Generator: click here
The only problem is that if a visitor uses text only browsers...
they can see the fake field, you need to make sure they do not fill it in.
The best way to do this is to use the alt attribute of the image to tell the user not to fill it in.
The form field - It is called 'check'
Code:
<p id='checkfield'>
<input id='check' name='check' type='text' size='20' />
<label for='check'><img src='whatever.gif' alt='Do Not Fill This Field In' /></label>
</p>
The CSS used to hide the field:
Code:
p#checkfield{
position: absolute;
left:-2000px;
}
If you don't believe me check my reference...
Source: click here
A sequence of variables thatre engraved since the beginning of the cosmos is responsible for animating things in reality