Share Pastebin
Guest
Public paste!

fosk

By: a guest | Apr 27th, 2008 | Syntax: HTML | Size: 0.40 KB | Hits: 1,420 | Expires: Never
Copy text to clipboard
  1. <div style="visibility: hidden;">
  2.     Please don't insert any text in the input below. If you do this your comment will be refused!<br />
  3.     <input type="text" name="hiddenForm" value="" style="width: 1px; height: 1px; font-size: 1px;" />
  4. </div> 
  5.  
  6. <?php
  7. if (!isset($_POST['hiddenForm']) || (!empty($_POST['hiddenForm']))){
  8.    echo '<html><body><p>Spam detected</p></body></html>';
  9.     exit();
  10. }
  11. ?>