Topic: GoogleBot
I saw another forum that would show whenever GoogleBot was visiting their forum, so I was wondering if anybody could write a lil mod that would show "GoogleBot" in the user's online list whenever it comes around.
I know there isn't really any point of this, but I think it'd be a cool little feature to add
I found out how to detect googlebot, with this code snippet:
if(strstr(strtolower($HTTP_USER_AGENT), "googlebot")){
do_work_here;
}
How would I include him into the "online users" list?