gpt4 book ai didi

php - 通知 : Undefined variable: _SESSION in "" on line 9

转载 作者:IT王子 更新时间:2023-10-29 00:06:21 25 4
gpt4 key购买 nike

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

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

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

最佳答案

添加

session_start();

在任何 HTML 之前的页面开头

你会得到类似的东西:

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

不要忘记删除之前的空间

关于php - 通知 : Undefined variable: _SESSION in "" on line 9,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15594498/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com