Navigation :

Home
Source code
Tutorials
RSS feeds
Articles
Wordpress plugins
Blog
Books
Software
Downloads
Hosting
manuals
Script directory
Training
Our Links




Site Sponsors :

Bookmark :

Links :

dvd information
golfing products
gambling sites

Downloads :

Misc :

Webmaster Resources
Only PHP
ScriptSearch.com
Scripts.com - Get the best scripts NOW!
AndreaPHP Programming

Valid XHTML 1.0 Transitional


Valid CSS!




Googlebot has visited

This snippet emails you when the Googlebot visits your website

<?php
if ( strpos( $_SERVER['HTTP_USER_AGENT'], 'Googlebot' ) !== false )
{
// enter your email address
$email_address = 'me@mysite.com';

// Send yourself an email
mail($email_address,'Googlebot Alert messaage', 'The Googlebot has just visited this page: '.$_SERVER['REQUEST_URI']);
}
?>