View Single Post
10-20-2008, 08:11 AM
#16
lyax is offline lyax
Status: Junior Member
Join date: Oct 2008
Location: Pluto
Expertise:
Software:
 
Posts: 35
iTrader: 0 / 0%
 

lyax is on a distinguished road

Send a message via AIM to lyax Send a message via MSN to lyax Send a message via Yahoo to lyax Send a message via Skype™ to lyax

  Old

Its working for me..

hey thanks man
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
Originally Posted by shilpamg View Post
Ohh thanks