23/06/2004, 21:15
|
| Moderador | | Fecha de Ingreso: abril-2001 Ubicación: Ciudadano del mundo
Mensajes: 13.638
Antigüedad: 23 años, 8 meses Puntos: 1792 | |
Enviate un email cuando el robot de Google visite tu página. Un interesante código PHP para enviarte un email cuando el robot de Google indexe tu sitio: Código PHP: <?php
$email = "[email protected]";
if(eregi("googlebot",$_SERVER['HTTP_USER_AGENT']))
{
mail($email, "The Googlebot came to call",
"Google has indexed : ".$_SERVER['REQUEST_URI']);
}
?> Fuente: V. W. Marshall
__________________ - Christian Van Der Henst Platzi |