Forum Moderators: coopster
The referring page is what I am wanting to include into the email that is sent to me each time my page gets a visitor.
Here is the code that I have now.
<?php
if(eregi("mozilla",$HTTP_USER_AGENT))
{
mail("name@domain.com", "Mozilla Just Visited", "Mozilla just visited < [domain.com...] >");
}
?>
TIA