Use the following code:
if ($_POST['password'] != "123456789" && $_POST['password'] != "987654321") {
echo "That is an incorrect password.";
}
according to the given code, the script would compare the entered password with 123456789 and 987654321. If the password does match it will show the...