CAPTCHA/Integration/The Anti-CAPTCHA
Appearance
< CAPTCHA | Integration
This is a CAPTCHA killer. It needs nothing on the form except a hidden field and some server-side code.
PHP Example
[edit | edit source]//... Your lovely form here
// Example, please adapt
echo "<input type=hidden name=url />";
//... Rest of your lovely form here
verification
[edit | edit source]// compare
if ($_POST['url'] != "") {
// abort!
}
// processing code here