CAPTCHA/Integration/The Anti-CAPTCHA

From Wikibooks, open books for an open world
Jump to navigation Jump to search

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

See also[edit | edit source]