How would I change this code to also log MSN and Yahoo, along with Google?
if ($ENV{'HTTP_USER_AGENT'} =~ /google/) {
open (DATABASE,">>$database");
print DATABASE "$ENV{'REMOTE_ADDR'} - $ENV{'HTTP_USER_AGENT'} - $ENV{'HTTP_REFERER'} - $shortdate\n";
close(DATABASE);
}