drzb7969753 2016-03-26 19:52
浏览 98
已采纳

如何在PHP中正确使用$ _SERVER ['HTTP_REFERER']?

Lets say i have two pages page1.php and page2.php and i want page2.php to be displayed only if it is redirected form page1.php and i inserted this code to page2.php

if($_SERVER['HTTP_REFERER'] == "page1.php")
{
    //keep displaying page2.php
}else{
    //if it is not redirected from page1.php
    header('Location:page1.php')
    //redirect the user back to page1.php 
}

this code worked fine until i have a form and a submit button on page2.php when the submit button is clicked the page refreshes which means the HTTP_REFERER will change to page2.php so my if statement fails and it takes me back to page1.php i don't want that to happen. Is there any way to prevent this from happening?

Thanks in advance.

  • 写回答

4条回答 默认 最新

  • dongniechi7825 2016-03-26 20:02
    关注

    I wouldnt recommend using HTTP_REFERER:

    1. It's fairly simple to manipulable in browser.

    2. Some users might have security settings in their browser to not send this header at all.

    3. It's not accessible over HTTPS.

    4. Some proxies strip this header from the request

    5. added - see answer to this quesion


    As Charlotte Dunois stated in the comment, better set session value before sending the form and then check it on page2.

    page1.php:

    $_SESSION[ 'display_page2' ] = TRUE;
    //rest of the content
    

    page2.php:

    if ( (isset( $_SESSION[ 'display_page2' ] ) && $_SESSION[ 'display_page2' ] === TRUE ) || isset( $_POST[ 'some_form_input' ] ) ) {
      //keep displaying page2.php
    } else {
      header('Location:page1.php');
      exit;
    }
    

    With isset( $_POST[ 'some_form_input' ] ), you can check whether the form has been sent (via POST method).

    When needed, you can unset the session with unset( $_SESSION[ 'display_page2' ] ); or by setting it to different value.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥20 wireshark抓不到vlan
  • ¥20 关于#stm32#的问题:需要指导自动酸碱滴定仪的原理图程序代码及仿真
  • ¥20 设计一款异域新娘的视频相亲软件需要哪些技术支持
  • ¥15 stata安慰剂检验作图但是真实值不出现在图上
  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来