I am an amateur web designer, I have searched on stackoverflow.com and other websites and have found many fixes for this issue I\'m having, but none of them have worked (probabl
A simple trick is to create a honeypot field:
html
css
/*in your css hide the field so real users cant fill it in*/ form #website{ display:none; }
php
//in your php ignore any submissions that inlcude this field if(!empty($_POST['website'])) die();