this does not mean discussion, but if it helps against the crawler or spam bots.
Captchas are not friendly and don't look pretty ... that is why I thought about trying something like this:
<form><input type="text" name="name"> <input type="hidden" value="" name="surname" /></form>
and check if the input type is hidden (to check its bot) (submit.php).
if (!empty($_POST['surname'])){ $error2 = "You are a Bot."; }
My question is:
Will this work, or will the crawler or bot ignore input types that are hidden?
Or would it be better to wrap around it <div style="display:none;"></div> ?
Technically it works (if I fill this field with a value) ... but I donβt know if something like this will pretend that I get annoying spam.
Thanks for reading / other solutions that would be userfriendliy.
source share