PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Krzysztof Piotrowicz   BotID   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: EXAMPLE FILE
Class: BotID
Determine if the current user is robot
Author: By
Last change: Added explanation for Blocked IP's
Date: 11 years ago
Size: 144 bytes
 

Contents

Class file image Download
<?
include_once('botid_class.php');
$BotID = new BotID;
echo
"IS BOT:".$BotID->is_bot()."<BR>";
echo
"IS BLOCKED:".$BotID->is_blocked();
?>