1. Go to this page and download the library: Download dominiquevienne/honeypot library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
dominiquevienne / honeypot example snippets
rm = new Dominiquevienne\Honeypot\Form();
echo $oForm->inputs();
re __DIR__ . '/honeypot/src/Form.php';
$oForm = new Dominiquevienne\Honeypot\Form();
echo $oForm->inputs();
use \Dominiquevienne\Honeypot\Form;
class yourController {
public function show() {
/** some code of yours */
$oForm = new Form();
return $oForm->inputs();
}
}
$oForm = new Dominiquevienne\Honeypot\Form();
$oForm->timeCheck();
$honeypotInputs = $oForm->inputs();
$oHoneypot = new Dominiquevienne\Honeypot\Honeypot();
$checks = $oHoneypot->checks();
if(!empty($checks)) {
die('Your are a spammer');
}
// your code