Need board software that have a good bridge support

i want to a board software such as the phpBB, SMF myBB or etc that have good support to use with my own CMS that support these feature.

  • With external script i can easily add new user as a default board user with all permission settings and etc …
  • Also i can remove and get list of last public post and topics.
  • and anything that need in CMS…

my own script that for example:


<?php
function addUser($username, $password) {
    // what must i do for add ?
}

function removeUser($username) {
    // what must i do for remove
}

function getOnlineUserList() {
    // what must i do for get online user that on SMF
}


// or much more function for my own CMS
?>

thank you.