[PHP典型模塊與項目實戰大全]-第六章(註冊和登錄模組:is_login.php)

[PHP典型模塊與項目實戰大全]-第六章(註冊和登錄模組:is_login.php)

[PHP典型模塊與項目實戰大全]-第六章(註冊和登錄模組:is_login.php)


 

 

code2html:http://tohtml.com/

 

is_login.php-判斷是否已登錄狀態 

<?php
header("Content-Type:text/html; charset=utf-8");
session_start();
if(empty($_SESSION['login'])){
    echo"您還沒有登錄,不能訪問當前頁面!";
    exit;
}
?>

 

 

 

 


發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *