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
29
30
31
32
33
34
35
36
37
38
|
<?php
session_start();
$USER = $_POST[LogInName];
$PASSWORD = md5($_POST[LogInPassword]);
$passwordFile = "./cfg/adminpassword.md5";
$file = fopen($passwordFile, "r") or exit("Unable to open file!");
$passwordfromfile = fgets($file);
fclose($file);
$usernameFile = "./cfg/adminusername.u";
$file = fopen($usernameFile, "r") or exit("Unable to open file!");
$userfromfile = fgets($file);
fclose($file);
if($_POST == null){
echo "that is not allowd!";
} else {
if($userfromfile == $USER && $passwordfromfile == $PASSWORD){
$_SESSION[Login] = true;
header('Location: ./');
} else {
echo "password or username is not valid, try again.";
}
}
?>
|