that if a user login with password and if it's
matched then the user will be redirected to the
member home page.the following codes shows that.
the 'header' does the part of redirecting to
another page.
if($password == $passwd)
{
$_SESSION["userid"] = $id;
header("Location: https://championpetregistry.com
/members/index.php"); // redirects
}
else
{
unset($_SESSION["userid"]);
$_SESSION["msg"] = "<li>Login Information - Username
/Password: Incorrect Combination</li>";
}