I have tried following code in order to get previous website visited. I want to get all previous or history of previous 10 days visited website.
<?php
$get = $_SERVER['HTTP_REFERER'];
echo $get;
?>
Please tell me how to can do it. it might be get from cookies. I want it to get when visitor visit my website i want to store previous website, so i can read user mind and plan for future.
Thanks!