注意:未定义的变量:_SESSION在第 9 行的 “” 中

2022-08-30 17:03:28

这是我的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>

我知道我的代码有问题,但我不知道如何修复它。我的错误说:“注意:未定义的变量:_SESSION在第9行的C:\xampp\htdocs\Smasher\member-index.php”

如何修复错误,使其说出用户的名字?mySQL 上数据库表中的第一个名称称为 。fname


答案 1

session_start();

在任何 HTML 之前的页面开头

您将拥有类似下面的内容:

<?php session_start();
include("inc/incfiles/header.inc.php")?>
<html>
<head>
<meta http-equiv="Content-Type" conte...

不要忘记删除您之前拥有的空间


答案 2

首先,您需要在要使用变量的任何页面的顶部添加。session_start()SESSION

此外,您应该检查以确保在使用变量之前先设置变量:

if(isset($_SESSION['SESS_fname'])){
    echo $_SESSION['SESS_fname'];
}

或者,简单地说:

echo (isset($_SESSION['SESS_fname']) ? $_SESSION['SESS_fname'] : "Visitor");

推荐