<?php
// Bot Monitor (1.1)
// http://www.BlueWaterWebDesigns.com/
// This script is for allowing your web sites to inform you when search engine bots visit.
// If this script is useful drop me a thanks at hide@address.com
// Links to my site are greatful Blue Water Web Designs http://www.BlueWaterWebDesigns.com
// Thanks
//Edit Your Email name site and database info below.
$emailto = "hide@address.com"; //Must be a valid email for you to receive our bot alerts.
$name = "Your Name"; //Name associated with first email address.
$siteurl = "yoursite.com"; //Must be yoursiteurl.com without the http://www. and no trailing /
$sendemail = "Y";
$usedatabase = "Y";
function dbinit()
{
$server=""; //Enter your database server address usually localhost see your host info for details
$user=""; //Database username
$pass=""; //Database password
$db=""; //Database name
$connection=mysql_connect($server,$user,$pass) or die(mysql_error());
$database=mysql_select_db($db) or die(mysql_error());
return NULL;
}
?>