这是我的php代码:
<?php include("inc/incfiles/header.inc.php")?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Member Index</title>
<link href="css/main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>Welcome <?php echo ($_SESSION['SESS_fname']);?></h1>
<a href="member-profile.php">My Profile</a> | <a href="logout.php">Logout</a>
<p>This is a password protected area only accessible to members. </p>
</body>
</html>
我知道我的代码有问题,但我不知道如何修复它。我的错误说:“注意:未定义的变量:第 9 行 C:\xampp\htdocs\Smasher\member-index.php 中的 _SESSION”
如何修复错误,以便它会说出用户的名字?mySQL 上数据库表中的第一个名字叫做fname
.