<?php session_start(); ?>
<html>
<head>
<title>
</title>
</head>
<body>
<?php
if($_SESSION['status']=='loggedin'){
echo $_SESSION['name'];
}
?>
</body>
</html>
我启动了一个会话来跟踪登录用户。我将相同的代码放入 profile.html 文件并尝试在登录尝试成功时重定向到此页面,但我无法从$_SESSION
变量中获取任何信息到该文件中,但是当我将文件扩展名更改为 profile 时。 php 它工作得很好。