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

Размер файла: 1.1Kb
<?
Error_Reporting(E_ALL & ~E_NOTICE);
include"inc/conf.php";  #Подключаем конфигурацию
include"inc/trans.php"; #Подключаем транслит
$dir=opendir($direct);
while ($file=readdir($dir))
if(($file!=".")&&($file!="..")&&($file!="inc")&&($file!="index.php")){ $a[]=$file; }   #Убираем лишнее
closedir($dir);
include"inc/head.php";   #Подключаем тему
sort($a);
foreach ($a as $value) {
if (($type==1)&&($translit==1)){ $sod=$value; $sod=str_replace("$ras","",$sod); $sod=str_replace("$ras2","",$sod); $sod=str_replace("$ras3","",$sod); $soder=trans($sod);}
if (($type==1)&&($translit==0)){ $sod=$value; $sod=str_replace("$ras","",$sod); $sod=str_replace("$ras2","",$sod); $sod=str_replace("$ras3","",$sod); $soder=$sod;}
if (($type==0)&&($translit==1)){ $soder=trans($value);}
if (($type==0)&&($translit==0)){ $soder=$value; }
$soder=str_replace("Pictures","Картинки",$soder); #Делаем по примеру также
echo ("<a href = $direct/$value>$soder</axbr><br>");
 }
include"inc/foot.php";   #Подключаем "ноги"
?>