如果验证了登录代码,我应该进入会员页面,否则我应该在同一页面上说..我不知道如何写一个导航链接到另一个页面..我已经看到了几个使用标题的答案,但我没有不明白。
登录.php
if($username==$dbusername&&$password==$dbpassword)
{
// If this condition is true I should go into member page
}
else
{
echo "incorrect password!"; //should stay in the same page
}
form action= "member.php" method="post"
Username: input type="text" name="username"<br/>
Password: input type="password" name="password"<br/>
input type="submit" value="LogIn"><br/><br/>