php check for spam string code example
Example 1: PHP detect spam name
/*in your css hide the field so real users cant fill it in*/
form #website{ display:none; }
Example 2: PHP detect spam name
//in your php ignore any submissions that inlcude this field
if(!empty($_POST['website'])) die();