Yeah, I'm sure I can find one for you, I'll send it over in a few minutes, when I find it
EDIT:
PHP Code:
<?php
$to = "Your@Emailhere.com";
$subject = "The Subject";
$body = "EG - Someone has Visited Your Website";
if (mail($to, $subject, $body)) {
echo("<p>Message successfully sent!</p>");
} else {
echo("<p>Message delivery failed...</p>");
}
?>
If you add something like that into the PHP page, it should email you, everytime someone visits that certain PHP page.
Obviously if you fill it all in first.