会话更改head.php的条件

时间:2014-10-15 15:39:53

标签: php session

我目前正在处理我的index.php,我想要做的是当用户登录时他将再次被重定向到index.php,但这次使用不同的head.php来存储用户的会话。 / p>

我试过这个。

if(isset($_SESSION['isCustomer'])){
    include 'includes/customer.head.php';
    echo "hahaha";
}
else{
include 'includes/head.php';

}

这是我的checklogin.php

if($row['type'] == 'admin'){
            $_SESSION['isAdmin'] = true;
            header("location: admin/admin.php");
        } else if($row['type'] == 'customer'){
            $_SESSION['isCustomer'] = true;
            header("location: ../index.php");
        }

1 个答案:

答案 0 :(得分:1)

当你说"我试过这个。"

if(isset($_SESSION['isCustomer'])){
    include 'includes/customer.head.php';
    echo "hahaha";
}
else{
include 'includes/head.php';

}

我猜它没有用。确保你有

session_start(); 

位于脚本的顶部。你的状况看起来正确。