我正在view_category.php
为我的论坛创建一个页面,但我遇到了一个小问题我的链接不起作用我正在登录但页面显示我没有登录它对待我就像我只是查看论坛的客人一样因此我无法在论坛上创建主题,我的 create_topic.php 链接无法访问。
这是我下面的代码
// Assign local variables
$cid = $_GET['cid'];
// Check to see if the person accessing this page is logged in
if (isset($_SESSION['uid'])) {
$logged = " | <a href='create_topic.php?cid=".$cid."'>Click Here To Create A Topic</a>";
} else {
$logged = " | Please log in to create topics in this forum.";
}
为什么会这样??
我只是包括
var_dump($_SESSION);
这是输出
array(2) { ["username"]=> string(7) "mura" ["password"]=> string(4) "1234" }