Quote:
Originally Posted by leia
I'm trying to make this example work for my forum to let users choose the forum where their thread will be posted. I currently have it as:
HTML Code:
if ($qo['38'] == 1)
{
$form['forumid'] = 112;
}
elseif ($qo['38'] == 2)
{
$form['forumid'] = 113;
}
elseif ($qo['38'] == 3)
{
$form['forumid'] = 114;
}
It isn't working. We're on 4.0.3.
Also, is there a way to set the prefix based on a selection from a drop down?
|
Use this...
HTML Code:
if ($q['38'] == 1)
{
$form['forumid'] = 112;
}
elseif ($q['38'] == 2)
{
$form['forumid'] = 113;
}
elseif ($q['38'] == 3)
{
$form['forumid'] = 114;
}