-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.php
More file actions
26 lines (20 loc) · 724 Bytes
/
Copy pathapp.php
File metadata and controls
26 lines (20 loc) · 724 Bytes
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
<?php
require_once 'vendor/autoload.php';
//require_once APPPATH . 'install/migration.php';
$url = explode("&", trim($_SERVER['REQUEST_URI'], '/'));
if($_SERVER['REQUEST_URI'] != "") {
switch($url[1]) {
case "steep=1":
require_once 'application/install/pages/check.php';
break;
case "steep=2":
require_once 'application/install/pages/check.php';
break;
case "steep=3":
require_once 'application/install/pages/check.php';
break;
case "steep=4":
require_once 'application/install/pages/check.php';
break;
}
}