為什麼他一直出現"您尚未登入"~
<meta content="text/html; charset=UTF8" http-equiv="content-type">
<title>會員中心</title>
<h1 style="text-align: center;">會員中心</h1>
<div style="text-align: center;">
<?php
session_start();
if($_SESSION['level']!=null)
{
?>
<p><a href="reg.php">新增會員</a> <a href="update.php">更新帳號資訊</a> <a href="delete.php">刪除會員</a> <a href="logout.php">登出</a></p>
<p>歡迎使用會員中心!!!</p>
<?php
}
else
{
?>
<font color="red">您尚未登入!</font>
<?php
}
?>
</div>
請檢查你的
<pre class="c" name="code">$_SESSION['level']
是否有寫入值
在最开始的地方要启用session
加上这句
<pre class="c" name="code">session_start();
第13行增加
$_SESSION['level']="ABC";
第14行改
if (isset($_SESSION['level']))