Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
define('PASSWORD_FILE', 'passwords.txt'); # Deine Passwortdatei
if (!empty($_POST))
{
$password_list = explode('|', trim(file_get_contents(PASSWORD_FILE)));
if (in_array($_POST['password'], $password_list))
{
echo 'Passwort ist in Passwortliste';
}
else
{
echo 'Passwort ist _nicht_ in Passwortliste';
}
}