Размер файла: 802B
<?php
define('JRCMS_SOC_SET', 1);
$rootpath = '';
$adres = trim($_POST['adres']);
switch ($adres) {
case 'chat':
header("location: $dirsite/chat/index.php");
break;
case 'forum':
header("location: $dirsite/forum/index.php");
break;
case 'prof':
header("location: $dirsite/pages/photo.php");
break;
case 'library':
header("location: $dirsite/library/index.php");
break;
case 'down':
header("location: $dirsite/down/index.php");
break;
case 'gallery':
header("location: $dirsite/blog/index.php");
break;
case 'pohc':
header("location: $home/pages/post.php");
break;
case 'guest':
header("location: $dirsite/gues/index.php");
break;
}
?>