Heres some quick code, it *works* but its ganna require you to do some work. Basicly for every forum you wish to include you must add a new line like this:
<option value="1">Forum one</option>
Value is the forum id you want the jump to go to when its selected. the "forum one" sould be changed to the forum name that the link will direct someone to. This block of code can be added to any page, anywhere.
<smallfont><b>Forum Jump:</b>
<select name="forumid"
onchange="window.location=('forumdisplay.php?s=$se ssion[sessionhash]&daysprune=$daysprune&forumid='+this.options[this.selectedIndex].value)">
<option value="-1" selected>Please select one:</option>
<option value="1">Forum one</option>
</select></smallfont>
|