Файл: index.php
Строк: 47
<?php
switch ($mod):
case 'hosting':
include 'head.php';
echo "<div class='razd'><b>Тарифы на хостинг</b></div><div class='main'>";
include './dat/hosting.tpl';
include 'foot.php';
break;
case 'domains':
include 'head.php';
echo "<div class='razd'><b>Тарифы на домены</b></div><div class='main'>";
include './dat/domains.tpl';
include 'foot.php';
break;
case 'reselling':
include 'head.php';
echo "<div class='razd'><b>Тарифы на реселлинг</b></div><div class='main'>";
include './dat/reselling.tpl';
include 'foot.php';
break;
case 'server':
include 'head.php';
echo "<div class='razd'><b>Конфигурация сервера</b></div><div class='main'>";
include './dat/server.tpl';
include 'foot.php';
break;
case 'rules':
include 'head.php';
echo "<div class='razd'><b>Правила</b></div><div class='main'>";
include './dat/rules.tpl';
include 'foot.php';
break;
case 'faq':
include 'head.php';
echo "<div class='razd'><b>FAQ (часто задаваемые вопросы)</b></div><div class='main'>";
include './dat/faq.tpl';
include 'foot.php';
break;
case 'support':
include 'head.php';
echo "<div class='razd'><b>Техническая поддержка</b></div><div class='main'>";
include './dat/support.tpl';
include 'foot.php';
break;
case 'pay':
include 'head.php';
echo "<div class='razd'><b>Способы оплаты</b></div><div class='main'>";
include './dat/pay.tpl';
include 'foot.php';
break;
case '404':
include 'head.php';
echo "<div class='razd'><b>Ошибка...</b></div><div class='main'>";
include './dat/404.tpl';
include 'foot.php';
break;
default:
include 'head.php';
include './dat/index.tpl';
endswitch;
?>