25

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

4

2 回答 2

44

添加

session_start();

在任何 HTML 之前的页面开头

你会有类似的东西:

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

不要忘记删除之前的空间

于 2013-03-24T02:31:05.570 回答
7

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

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

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

或者,简单地说:

echo (isset($_SESSION['SESS_fname']) ? $_SESSION['SESS_fname'] : "Visitor");
于 2013-03-24T02:34:32.963 回答