2013-02-27 60 views
2

我開始使用webmatrix,現在使用php starter網站模板使用iam。Php不在webmatrix中創建會話

在此模板中,您無法登錄。我搜索了所有的代碼,但我發現它並沒有創建會話。也許它創建但不傳遞給其他頁面。

如果有用戶(logon.php):

if ($statement->num_rows == 1) 
{ 

    $statement->bind_result($uid,$uname); 
    $statement->fetch(); 
    $_SESSION['userid']=$uid; 
    $_SESSION['username']=$uname; 
    echo $_SESSION['username']; // yes its printing username 
    header ("Location: index.php"); 
} 

檢查(header.php文件):

if (logged_on()) 
    { 
     echo '<li><a href="/logoff.php">Sign out</a></li>' . "\n"; 
    } 

logged_on功能:

function logged_on() 
{ 
    return isset($_SESSION['userid']); //empty 
} 
+0

您是否在每頁的頂部使用了'session_start()'?如果不使用它,你的問題將得到解決。 :) – 2013-02-27 10:00:32

+0

我寫了每一頁,但仍然是:( – 2013-02-27 10:15:46

回答

0

只要寫

session_start();