[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;
}
?>
|