The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
What i am trying to do is have my server side script access the forum that is setup as a private fourm and to do that I have passed to the server sode php script a variable using hidden type in a input in a form HTML - once my php script has the value passed - i use a switch statement to process teh value when it finds a match I want to echo the href link so that the user will go to the forum now i used the first case to test my code and before going to the actual fourm the user will be asked to enter a password to get access to this forum after that the user is sent to the forum selected.
Before looking at the actaul switch statement please look at the echo and tell me if it will work - echo "http://burningtaper.org/forums/forumdisplay.php?f=30"; Do not worry about if the number 30 is correct it is for this forum - is the above echo will it work as is or do i have to make some a change i grabed it from the address bar in the browser after in the forum. Here is the PHP server side script <?php $selected = $_POST['selected']; switch ($selected) { case "John T Heard Lodge": echo "http://burningtaper.org/forums/forumdisplay.php?f=30"; break; case "The Tyrian-Acacia Lodge": echo "http://burningtaper.org/forums/forumdisplay.php?f=31"; break; default: echo "Invalid page"; break; } ?> THANKS Frank H. Shaw |
#2
|
||||
|
||||
![]()
Well it will echo it to the screen, it won't actually do any redirection though
better off using the vbulletin system to do the actual redirect. PHP Code:
|
#3
|
|||
|
|||
![]()
I have modifyed the php server side script would this be correct ?
If this is correct can my server side php script reside in the web root and not in the /forums/ sub dir where all the vbulletin stuff resides. I want to have my script one level above the vbulletin sub dir? And do i need to have any more includes or any other code or should this work fine as is? <?php $selected = $_POST['selected']; 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 $vbulletin->url = $vbulletin->options['bburl']."/forumdisplay.php?f=30"; eval(print_standard_redirect('redirecting to forum', false, true)); |
#4
|
||||
|
||||
![]()
Pretty sure I answered this in the other thread.
|
#5
|
|||
|
|||
![]()
THANKS
Frank H> Shaw |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|