php重定向到带有消息的页面

前端之家收集整理的这篇文章主要介绍了php重定向到带有消息的页面前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想重定向到一个页面,然后显示一条消息:

我拥有的是:

if (MysqLi_affected_rows($link) == 1) 
{
   //succes         
    $message = 'succes';
    redirect_to('index.PHP');
}

在索引页面上我有:

if (!empty($message)) {
    echo '<p class="message"> '.$message.'</p>';
}

重定向功能正常工作:

function redirect_to( $location = NULL ) {
        if ($location != NULL) {
            header("Location: {$location}");
            exit;
        }
    }

但它不会显示我的信息.它是空的.

重定向发生并且$location描述的PHP脚本被执行时,$message变量早就消失了.

解决此问题,您需要使用GET变量在您的位置标头中传递消息:

标题(“位置:$location?message = success”);

if(!empty($_GET['message'])) {
    $message = $_GET['message'];
// rest of your code

你也可以看看sessions

session_start();
$_SESSION['message'] = 'success';
header("Location: $location");

然后在目标脚本中:

session_start();
if(!empty($_SESSION['messsage'])) {
   $message = $_SESSION['message'];
   // rest of your code
原文链接:https://www.f2er.com/php/136802.html

猜你在找的PHP相关文章