好的,所以我在这里搜索了很多站点,但无济于事,我没有找到解决方案,我的代码在用户登录时显示登录菜单,当他们未登录时显示登出菜单:
<?php
session_start();
if(!$_SESSION['myusername'])
{
echo '<a href="login.php">Login</a> | <a href="register.php">Register</a> | <a href="torrent.php">Search</a>';
}
else
{
echo 'Welcome <b>'; echo $_SESSION["myusername"]; echo'</b> | <a href="torrent.php">Search</a> | <a href="addtorrent.php">Add a Torrent</a> | <a href="logout.php">LogOut</a>';
}
?>
但是当他们注销时,它会说:注意:未定义的索引:我的用户名
我能做些什么来解决这个问题?我做过很多事情。