how do i know the source page from which i am being redirected to...

Discussion in 'HTML & Website Design' started by mohitspage, Jun 2, 2012.

  1. #1
    hello der....
    i am not sure exactly if this post belongs to this section.....
    i am looking for a server side scripting in any language which can tell me from which page to which page the client is redirected....
    for eg. if the end user is redirected from index.html to contectme.html it should show me the same..... i mainly have used php css and html in my site..
    help appreciated
    thankx
     
    Solved! View solution.
    mohitspage, Jun 2, 2012 IP
  2. #2
    Your post doesn't relate to this section. It belongs in "Programming".

    The Environmental Variable HTTP_REFERRER will hold the referring URL to the current page. That's all. Not a history...

    print $_SERVER['HTTP_REFERRER']; //PHP
     
    NetStar, Jun 2, 2012 IP