Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question
5  
Fortunately, you can't. – Rob W Nov 22 '12 at 15:08
i am sure there will be way! – Fouad Ali Nov 22 '12 at 15:08
1  
Some people do appreciate their privacy, even if it could, people wouldn't be happy if you could see all the pages they visited... – Neograph734 Nov 22 '12 at 15:13
this is just to give good seevices to our visitors – Fouad Ali Nov 22 '12 at 15:15
There is no way to get the last ten days. last page is possible, aside from that you are SOL (are we are all better off for it). – rlemon Nov 22 '12 at 15:18
show 1 more comment

closed as not constructive by Lloyd, CyberDude, DCoder, rlemon, Aziz Shaikh Nov 23 '12 at 6:44

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

Storing the Referer Vaules into a MySQL Database?

http://dev.mysql.com/doc/refman/5.1/de/index.html

i am no way affiliated with mysql.com

share|improve this answer

I'm not sure I get your question.

The only thinkg you can know about a visitor, is the immediate previous page they just visited, called the referer. Usually it can be found in $_SERVER['HTTP_REFERER']. However be warned, this info is sent by the visitor, so they can lie about it, or just don't send it.

If you want you can store these referer, in a database or anything, so you know where does a visitor usually come from, but that's pretty much all you can do.

Even using javascript, you can't get the full history of visited pages of a visitor.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.