This commit is contained in:
Alexandr
2018-03-26 15:25:02 +02:00
parent f85d3616c7
commit aaf9a59303
196 changed files with 3046 additions and 0 deletions

44
new/index.php Executable file
View File

@ -0,0 +1,44 @@
<style>
html,
body {
height: 98%;
}
.wrapper {
display: table;
height: 100%;
}
.content {
display: table-row;
height: 100%;
}
</style>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
</head>
<div class='wrapper'>
<div class='content'>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<?php
session_start();
$LOG_LEVEL = 0;
# you can use logging via PHP function lg(<severity>, <message>)
# where severity may be 1 - Error, 0 -Info.
# or you can use https://url?message=<your message>&severity=<severity> with every page redirect.
include('logging.php');
include('db.php');
include('user_login.php');
include('user_register.php');
include('library.php');
?>
</div>
<div class='footer'>
<?php include('upload.php');?>
</div>
</div>