Okay, odd problem. I have had this installed for close to a year with no problems, but now I'm trying it a little differently, and I've come across a problem. I am using the form to reply to a thread.
In form.php:
PHP Code:
//ENABLE FORM TO BE POSTED - 1 = yes, 0 = no
$formforum = "1";
//FORUM TO POST NEW THREAD IN
$formforumid = "";
//ENABLE POLL TO BE CREATED - 1 = yes, 0 = no
$formpoll = "0";
$formoption1 = "Yes";
$formoption2 = "No";
If I leave $formforumid the way it is above, I get a syntax error. If I enter a 0 there, the error goes away, but the post won't redirect to the thread, it redirects to the last post, all by itself. If I enter in the forum ID #, it starts a new thread in that forum.
My question is; what should I enter there?