Файл: mob-site/install/index.php
Строк: 20
<?php
include_once('../engine/db/db.php');
//Подключим допфункции
//require_once $_SERVER['DOCUMENT_ROOT'].'/engine/main/Simple.php';
//Класс инсталла
require_once 'classes/install.class.php';
if(isset($_GET['mod'])){
    $mod = htmlspecialchars($_GET['mod']);
}
 else {
    $mod = 'two';}
    $install = new install();
    
    switch($mod){
              
        case'two':
            if($_POST){
         if(!$install->insertDB($_POST)){
             echo '<h1>Спасибо:) теперь можно удалить папку установки</h1>';
         }
         
            }else{
            include_once 'pages/two.html';}
        break;
        
        case'end':
            echo 'thanks:)';
        break;
    }
?>