Home  >  Article  >  Backend Development  >  How to use HTTP_REFERER and HTTP_USER_AGENT_PHP Tutorial

How to use HTTP_REFERER and HTTP_USER_AGENT_PHP Tutorial

WBOY
WBOYOriginal
2016-07-20 11:02:42964browse

if (isset($_SERVER['HTTP_REFERER'])) {
                                print "The page you were on previously was {$_SERVER['HTTP_REFERER']}
";
              } else {
Print "You didn't click any links to get here
";
            }
?>

Click me!


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/445349.htmlTechArticleif (isset($_SERVER[HTTP_REFERER])) { print The page you were on previously was {$_SERVER[ HTTP_REFERER]} ; } else { print You didnt click any links to get here ; } ? Click me!...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn