View: How to check an IP address against blacklists using PHP

  1. 2 years ago by spirit
    1. function isBlacklisted($ip){
    2.      $check = join('.',array_reverse(explode('.',$ip))).'.xbl.spamhaus.org.';
    3.      return dns_check_record($check,'A');
    4. }
    Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/751"></script>

0 comment about "How to check an IP address against blacklists using PHP"