Überprüfung:
<?php
$passwoerter = array ("123","456","789");
if(array_search($_POST['passwort'],$passwoerter))
{
echo "Passwort Richtig - Sie befinden sich hier: Admincenter";
}
else{
echo("Falsches Passwort!");
}
?>
Eingabe:
<html>
<body>
<form action="passwoerter.php" method="post">
<input type="text" name="passwort">
<input type="submit" value="OK">
</form>
</body>
</html>