<?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."chat10.php"); break;
default: die('Error versia chat: "'.$versia.'"');
}
exit;
?>