Просмотр файла 2/3020.ru/index.php

Размер файла: 685B
<?php
  
/*
------------------------------------------------
3020.ru - скрипты тут
------------------------------------------------
*/

FOREACH (ARRAY('config', 'connect', 'users') AS $connect) {
  
  INCLUDE_ONCE ("system/connections/global/$connect.php");
  
}

//Заголовок запрашиваемой страницы
REQUIRE (ROOT.'/main/title/index.php');

REQUIRE (ROOT.'/system/connections/header.php');

//Вызов страниц
$dir = ROOT.'/main/';
$get = DIRECT::F_GET('get').'.php';

IF (DIRECT::E_FILE($dir.$get) == TRUE){
  
  REQUIRE ($dir.$get);
  
}ELSE{
  
  REQUIRE ($dir.'index.php');
  
}

REQUIRE (ROOT.'/system/connections/footer.php'); 

?>