1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
|
<html>
<head>
<title>Seitentitel</title>
</head>
<body>
<?php
$username = $_POST["username"];
$password = $_POST["passwort"];
if( ($username=="Admin" AND $password=="admin")
OR
($username=="Gast" AND $password=="Gast")
OR
($username=="Freund" AND $password=="feind")
OR
($username=="Liesa" AND $password=="tom") )
{
echo "Willkommen im Internen Bereich!";
}
else
{
echo "Log-In gescheitert!";
}
?>
</body>
</html>
|