ログイン コードが検証された場合は、メンバー ページに移動する必要があります。それ以外の場合は、同じページで言う必要があります。別のページへのナビゲーション リンクを書き込む方法がわかりません。ヘッダーを使用した回答をいくつか見ましたが、わかりません。
login.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/>