Quote:
Originally Posted by bananalive
It's really easy just using one plugin:
Title : can be what you want
Hook Location : newthread_form_complete
Plugin PHP Code:
PHP Code:
if (in_array($forumid, array(1,2,3)))
{
header( 'Location: http://www.your-site.com/forum/misc.php?do=form&fid=1' ) ;
}
|
This is great! Thanks!
But I have 2 forums where each one uses a different easy form. Forum id 65 uses easyform #1,
Forum id 66 uses easyform #2
How would I code the php plugin for this? Thanks very much!!!!