The script below will this work just as this is and can it reside in my web root and not in my /forums/ sub dir I wnat it to reside one level above the /forums?
<?php
$selected = $_POST['selected'];
if (!$vbulletin->userinfo['userid'])
print_no_permission();
switch ($selected) {
case "John T Heard Lodge":
$vbulletin->url = $vbulletin->options['bburl']."/forumdisplay.php?f=30";
eval(print_standard_redirect('redirecting to forum', false, true));
break;
case "The Tyrian-Acacia Lodge":
$vbulletin->url = $vbulletin->options['bburl']."/forumdisplay.php?f=31";
eval(print_standard_redirect('redirecting to forum', false, true));
break;
default:
echo "Invalid page";
break;
}
?>
THANKS
Frank H. Shaw
|