View Single Post
08-25-2008, 07:09 AM
#6
shilpamg is offline shilpamg
Status: Member
Join date: Aug 2008
Location:
Expertise:
Software:
 
Posts: 101
iTrader: 0 / 0%
 

shilpamg is on a distinguished road

  Old

Originally Posted by wezy View Post
You can use PHP to send a mail when Google pays a visit

<?php
$email = "emailaddress@host.com";
if(eregi(”googlebot”,$_SERVER['HTTP_USER_AGENT']))
{
mail($email, "Spider passed",
"Google crawled " . $_SERVER['REQUEST_URI']);
}
?>

Hope this helps,
Wezy

Ohh thanks