<?php
error_reporting(15);
$rootpath="/home/kmx/includes/service/";
$versia=substr($_SERVER['QUERY_STRING'],0,2);
$_SERVER['QUERY_STRING']=substr($_SERVER['QUERY_STRING'],3);
switch ($versia)
{
case '10': include($rootpath."forum10/index.php"); break;
default: die('Error versia forum: "'.$versia.'"');
}
exit;
?>