Thread: who links to me
View Single Post
Old 05-15-2008, 09:14 PM
Sporkman Sporkman is offline
New real estate webmaster
 
Join Date: May 2008
Posts: 4
Sporkman is on a distinguished road
Default Re: who links to me

If you have dynamic pages, another thing you can do is log all the referring addresses, for example in PHP:

Code:
<?php
   $rf = $_SERVER['HTTP_REFERER'];
   $logfile = '/mylogdirectory/myreflogfile';
   
   if ( $handle = @fopen($logfile, 'a') )
   {
      fwrite($handle, $rf . "\n");
      fclose($handle);
   }
?>
Reply With Quote