1/*in your css hide the field so real users cant fill it in*/
2form #website{ display:none; }
3
1//in your php ignore any submissions that inlcude this field
2if(!empty($_POST['website'])) die();
3
1<!-- within your existing form add this field -->
2<input type="text" id="website" name="website"/>
3