20 lines
379 B
PHP
Executable File
20 lines
379 B
PHP
Executable File
<?php
|
|
require_once('fixed/config/go_con.php');
|
|
access(28);
|
|
|
|
|
|
$variable = 2;
|
|
if (!empty($_GET['m']) && $_GET['m'] == 1) {
|
|
require_once('work/files/active/3.php');
|
|
} else {
|
|
switch ($variable) {
|
|
case 2: // from frist lunch
|
|
require_once('work/files/buy_serv/2.php');
|
|
break;
|
|
|
|
default:
|
|
# code...
|
|
break;
|
|
}
|
|
}
|
|
?>
|