Quote:
Originally Posted by toucan42
Is that call being handled directly within the line:
PHP Code:
$threaddm->set_info('forum',$newforuminfo);
or is this something that needs to be done beforehand and if so is the call simply:
PHP Code:
$newforuminfo = fetchforuminfo();
Is there a parameter to pass into fetchforuminfo ?
|
You need to fetch_foruminfo($forumid); before $threaddm->set_info('forum', $newforuminfo);
Place
PHP Code:
var_dump($uname);
exit();
above
PHP Code:
$threaddm->setr('username', $uname);
What do you get returned?
I'm sure there is something easy were missing lol :erm: