Curing the “Back Button Blues”

后端 未结 6 1306
醉梦人生
醉梦人生 2021-02-02 04:55

Ever stumbled on a tutorial that you feel is of great value but not quite explained properly? That\'s my dilemma. I know THIS TUTORIAL has some value but I just can\'t get it. <

6条回答
  •  花落未央
    2021-02-02 05:16

    if ($_POST) {
        process_input($_POST);
        header("Location: $_SERVER[HTTP_REFERER]");
        exit;
    }
    

提交回复
热议问题