Hello, is there something like Vbulletin Datamanager to simple create new threads / posts in my php code? Something like this:
Please, suggest something how to realise this. Maybe one way is only to create addon? Any commens are welcome. thanks
PHP:
// [some connections from my code to xenforo] / how?
$threaddm->set('forumid', $forumid);
$threaddm->set('userid', $userid);
$threaddm->set('pagetext', $pagetext);
$threaddm->set('title', $title);
// "create/process" calback and $newthreadid returned.
echo "new thread created with threadid $newthreadid";
Please, suggest something how to realise this. Maybe one way is only to create addon? Any commens are welcome. thanks