我正在为我的网站创建登录系统,并且在用户登录后无法打印出用户名。
从数据库验证后,我已经这样做了:
$_SESSION['userName'];
$_SESSION['password'];
header("location:success.php");
这是在success.php文件中打印用户名的代码:
session_start();
if($_SESSION['userName']!='')
{
header("location:login_form.php");
}
else
{
echo '<h2>Successfully Login <br /> Welcome '.$userName.'</h2>';
echo '<a href="logout.php"> Log Out</a>';
}
但不打印用户名。