Просмотр файла index.php

Размер файла: 868B
<?php

require_once ("includes/start.php");
require_once ("includes/functions.php");
require_once ("includes/header.php");
include_once ("themes/".$config['themes']."/verh.dat");

if (empty($_GET['p'])){ 

include_once (DATADIR."datamain/index.dat");

} else {

if (empty($_GET['f'])) {$_GET['f'] = 'index';}

if (preg_match('|^[a-z0-9_\-]+$|i', $_GET['p']) && preg_match('|^[a-z0-9_\-]+$|i', $_GET['f'])){

if (file_exists($_GET['p'].'/'.$_GET['f'].'.'.$config['ras'])){

include_once ($_GET['p'].'/'.$_GET['f'].'.'.$config['ras']);

} else {echo'<b>Ошибка! Файл с данными параметрами не найден!</b><br>';}
} else {echo'<b>Ошибка! Недопустимое название страницы!</b><br>';}

echo'<br>
<a href="'.BASEDIR.'index.php">Главъ</a>';
}

include_once ("themes/".$config['themes']."/niz.dat");

?>