Bal küpü ile, i daha fazla veya daha az, bu uygulama demek:
#Register form
<style>
.hideme{
display:none;
visibility: hidden;
}
</style>
<form action="register.php">
Your email: <input type="text" name="u-email" />
Choose a password: <input type="text" name="passwd" />
<div class="hideme">
Please, leave this field blank: <input type="text" name="email" /> #the comment is for text-browser users
</div>
<input type="submit" value="Register" autocomplete=off />
</form>
//register.php
<?php
if($_POST['email'] != ''){
die("You spammer!");
}
//otherwise, do the form validation and go on.
?>
Daha fazla bilgi here.
Açıkçası gerçek alanları rastgele karmaları ile adlandırılır, ve bal küpü alan farklı isimleri olabilir (vb e-posta, kullanıcı, web sitesi, anasayfa,.) Bir spambot genellikle fillup söyledi.
I love this tecnique becose doesnt not cause the user to be annoied by capthca
Well, does anyone of you have some experience with this tecnique? How much is it efficent?