-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathincludes.php
54 lines (45 loc) · 1.32 KB
/
includes.php
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
/* * *********************************************
*
* Project: phpTransformer.com .
* Descriptions: .
* TODO: .
* *** Author: Mohsen Mousawi [email protected] +961-3-687150.
*
* ********************************************* */
?>
<?php
global $scheme;
if (isset($_SERVER["HTTPS"])) {
if ($_SERVER["HTTPS"] == 'on') {
$scheme = 'https';
} else {
$scheme = 'http';
}
} else {
$scheme = 'http';
}
include_once (__DIR__ . "/config.php");
include_once(__DIR__ . '/includes/Sql.php');
include_once(__DIR__ . '/includes/session.php');
require_once(__DIR__ . "/DBConnect/MySql/index.php");
SqlConnect();
include_once (__DIR__ . "/includes/ezsql/ez_sql.php");
require_once (__DIR__ . "/includes/Functions.php");
require_once (__DIR__ . "/includes/InputFilters.php");
include_once(__DIR__ . '/Global.php');
$UserId = "20070000000";
$GroupId = "20070000000";
if (isset($_COOKIE['LastSession'])) {
$LastSession = $_COOKIE['LastSession'];
$db_user = new db();
$user_info = $db_user->get_row(" select * from `users` where `LastSession`='" . $LastSession . "' ; ");
if ($user_info) {
$UserId = $user_info->UserId;
$GroupId = $user_info->GroupId;
}
}
if (isset($_COOKIE['phpTransformer'])) { // for admin interface
$phpTransformer = $_COOKIE['phpTransformer'];
}
?>