,當我登錄...我想它來尋找我的新$ _SESSION變量,然後重新裝入該頁面與所有選定的數據。但不是http://www.theqlick.com/findFriends/lesson.php?username=noahtheteacher重定向到
我得到這個代替:http://theqlick.com/findFriends/lesson.php?username=%3C?%20echo%20noahtheteacher;%20?%3E
這是爲什麼?它沒有加載正確的頁面要麼...我的代碼如下
頁面的頂部:
$new_user = $_SESSION['user_login'];
if (!isset($_SESSION["user_login"])) {
echo "";
}
else
{
echo "<meta http-equiv=\"refresh\" content=\"0; url=lesson.php?username=<? echo $new_user; ?>\">";
}
登錄實際的html代碼:
<h2>If your a teacher, login below ...</h2>
<form action="lessons_login.php" method="post" name="form1" id="form1">
<input type="text" size="40" name="user_login" id="user_login" class="auto-clear" title="Username ..." /><p />
<input type="text" size="40" name="password_login" id="password_login" value="Password ..." /><p />
<input type="submit" name="button" id="button" value="Login to your account">
</form>
</div>
回聲 「」; –