|
To insure
privacy of personal information a user name and a password
are required to access the adult leader portion of the web
site.
print "";
}
else if($name=="leader"&&$password=="pahatsi")
{
// visitor's name and password combination are correct
header("Location: leaderResource/roster.php" );
}
else
{
// visitor's name and password combination are not correct
echo "Sorry!";
echo "You are not authorized to view this resource.";
}
?>
|