Here is a basic script you can add to save the referrers to your page in a txt file refer.txt
<?php
$refer = $_SERVER['HTTP_REFERER']; //save refer in variable
$file = "refer.txt";
$fp = fopen($file, "a"); // append to end of content in log file
chmod("refer.txt", 0777); // make sure file is...