这是我的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
。
答案 0 :(得分:36)
添加
session_start();
在任何HTML之前的页面开头
你会有类似的东西:
<?php session_start();
include("inc/incfiles/header.inc.php")?>
<html>
<head>
<meta http-equiv="Content-Type" conte...
不要忘记删除之前的空间
答案 1 :(得分:2)
首先,您需要在希望使用session_start()
变量的任何网页的顶部添加SESSION
。
此外,您应该检查以确保在使用变量之前先设置变量:
if(isset($_SESSION['SESS_fname'])){
echo $_SESSION['SESS_fname'];
}
或者,简单地说:
echo (isset($_SESSION['SESS_fname']) ? $_SESSION['SESS_fname'] : "Visitor");