Hi,

I'm launching a web to lead contact form on our site, after submit the form will enter the data into Leads.

I'm very concerned however about spam. Could you give me some advises how to prevent that? Let me just say that using captcha is out of the question at this point for some specific reasons.

I found on this thread:
http://www.sugarcrm.com/forums/showt...highlight=spam
this advise:

for example put

<input type=hidden name=wtltest value=aok>

then in the webtoleadcapture.php put this

if($_POST['wtltest']!='aok') {
exit;
}


I tried that but it doesn't work:-(

Thanks in advance