We found this great trick to block most spam for any form mail type form. Just paste this right above the submit button in the code: <div id=”fooDiv”> <label for=”foo”>Leave this field blank</label> <input type=”text” name=”foo” id=”foo”> </div> <script> (function () { var e = document.getElementById(“fooDiv”); e.parentNode.removeChild(e); })(); </script> The will eliminate…
block
.htaccess info, tricks, and tips
htaccess Tips and Tricks (This is an older article and some options might not still be relevant) After many frustrating months of learning how to protect my web site I decided to help some other webmasters out as well. There’s really only one reason we need to worry about this stuff: People like to steal….