PHP - 重定向到上一页

时间:2018-05-09 09:20:46

标签: php redirect

我有<a href="cookieaccept.php?accept=yes">使用此代码链接到php文件:

<?php
    function goback()
    {
        header('Location: ' . $_SERVER['HTTP_REFERER']);
        exit;
    }
    $option = @$_GET['accept'];
    if(!empty($option)) // If user enter with some value
    {
        if($option== "yes")
        {
            setcookie("cookieaccept", "yes", time()+2592000, "/");
            goback();
        } else if($option=="no") {
            header('Location: ' . $_SERVER['HTTP_REFERER']);
            exit;
        } else {
            echo "Error... !"; //If it comes with value other than yes or no
        }
    } else {
        echo "Error... !"; // If it comes with no value at all
    }
?>

点击“接受”按钮后,我想要刷新当前页面。但因为动作发生在一个单独的php文件中,我无法让它工作......我尝试了历史记录,刷新但是我需要一些帮助。

此致 罗伯特

0 个答案:

没有答案