Просмотр поста #525990: У Вас есть один вопрос? - Тогда задайте его тут!

.
Местный

Libra, $adres = trim($_POST['adres']);
switch ($adres) {
case 'forum':
header('location: ' . core::$system_set['homeurl'] . '/forum/index.php');
break;

case 'lib':
header('location: ' . core::$system_set['homeurl'] . '/library/index.php');
break;

case 'down':
header('location: ' . core::$system_set['homeurl'] . '/download/index.php');
break;

case 'gallery':
header('location: ' . core::$system_set['homeurl'] . '/gallery/index.php');
break;

case 'news':
header('location: ' . core::$system_set['homeurl'] . '/news/index.php');
break;

case 'guest':
header('location: ' . core::$system_set['homeurl'] . '/guestbook/index.php');
break;

case 'gazen':
header('location: http://gazenwagen.com');
break;

default :
header('location: http://johncms.com');
break;
}