-
How to link ...
Hi,
How do I specify a link (in html) from my current page to the page that called it?
example:
I have a central page (MyCentralPage). On this page I have a single "back" link.
I also have two external pages (External1, External2).
If I start at External1 and goto MyCentralPage, the back link must send me back to External1. If I start at External2, the "back" link must send me back to External2.
Thanks in advance.
-
Isn't it something like this:
javascript:history.back();
-
If the HTTP_REFERER cgi variable is set, you can write a link to it via server-side scripting.