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