Answers for "PHP detect spam name"

PHP
0

PHP detect spam name

//in your php ignore any submissions that inlcude this field
if(!empty($_POST['website'])) die();
Posted by: Guest on December-04-2020
0

PHP detect spam name

<!-- within your existing form add this field -->
<input type="text" id="website" name="website"/>
Posted by: Guest on December-04-2020
0

PHP detect spam name

/*in your css hide the field so real users cant fill it in*/
form #website{ display:none; }
Posted by: Guest on December-04-2020

Browse Popular Code Answers by Language