Display where your visitor came from to your site.
With PHP you can display the url where your visitor came from to your site by using a very simple code.
Code:
------------------------------------------------------------------------
<?php
echo $_SERVER['HTTP_REFERER'];
?>
------------------------------------------------------------------------
In action: