-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
31 lines (26 loc) · 873 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
<?php
function __autoload($class_name) {
include $cat = str_replace('\\', '/', $class_name) . '.php';
}
date_default_timezone_set('GB');
ini_set('display_startup_errors', '1');
ini_set('display_errors', '1');
?>
<?php
defined('APPLICATION_PATH')
|| define('APPLICATION_PATH', realpath(dirname(__FILE__) . ''));
defined('APPLICATION_VIEW_PATH')
|| define('APPLICATION_VIEW_PATH', realpath(dirname(__FILE__) . '/view/'));
echo '<br/>';
$myLaunch = new lanucher();
$myLaunch->run();
// $myController = new db\controller\indexController($arguments);
?>
</body>