Welcome Guest, Not a member yet? Register   Sign In
Back button
#1

[eluser]marcoslavorato[/eluser]
Hi CI programmers. I have a new question. How can I detect how is the older page visites by user? I need to catch this address to link with back button. Is is possible?

Thanks.
#2

[eluser]jcopling[/eluser]
You can access this information by using PHP like this:
Code:
$_SERVER['HTTP_REFERER'];
or by JavaScript like this:
Code:
document.referrer;

That is of course assuming that you need the most recent history item.
#3

[eluser]louis w[/eluser]
of you could use

Code:
<a href="#BACK">Back</a>
//Add this too: onClick = "history.go(-1);"

if you wanted to directly emulate the browser's back button.

Sorry for the jacked up code, the forum kept stripping my javascript out.
#4

[eluser]marcoslavorato[/eluser]
Thanks jcopling and louis.
#5

[eluser]Colin Williams[/eluser]
The Whence Lib looks nice: http://ellislab.com/forums/viewthread/86394/




Theme © iAndrew 2016 - Forum software by © MyBB