http://www.smart-it-consulting.com/i...ofer/index.htm
Basic, Simple PHP Google Bot Cloaking Script
$useragent = $_SERVER['HTTP_USER_AGENT'];
$google = "Googlebot";
if (strstr($useragent, $google)) {
echo "google";
}
else
{
echo "man";
}
?>
the above code is for wordpress.
$useragent = $_SERVER['HTTP_USER_AGENT'];
$google = "Googlebot";
if (strstr($useragent, $google)) {
echo "google";
}
else
{
echo "man";
}
?>