Try this addon, it's awesome!
Easy Forms v4.x - Create a form or multiple forms without php or html knowledge
Here's a copy of my
New Thread Button redirects to
Forms plugin which compliments
bananalive's Easy Forms hack. Hopefully it might give you some ideas to work with.
Selecting the New Thread button in forums 21 & 89 causes
Form 2 to generate.
Selecting the New Thread button in forum 96 causes
Form 5 to generate.
Selecting the New Thread button in forum 95 causes
Form 9 to generate.
You might need to have separate forms & forums (controlled by usergroup permissions) to achieve what you want. All of your forms can be outputted to a single forum or thread if you wanted that. Each form asks you where you want the results posted to or the results can be stored in your database for viewing.
Title: Redirect New Thread to Form (
or whatever title helps you remember what it is for)
Hook Location: newthread_start
Execution Order: 5
Plugin PHP Code:
PHP Code:
if (in_array($forumid, array(21,89))) {
header( 'Location: http://www.vcclan.org/forums/misc.php?do=form&fid=2' ) ;
}
if ($forumid==96)
{
header( 'Location: http://www.vcclan.org/forums/misc.php?do=form&fid=5' ) ;
}
if ($forumid==95)
{
header( 'Location: http://www.vcclan.org/forums/misc.php?do=form&fid=9' ) ;
}