63
Does anyone have any admin menus or blocks for flash chat?
Here's a simple block for showing who's chatting... it's not very good but it works.
someone should make it link the names and stuff:
global $xoopsDB;
$sql = "SELECT xoops_online.online_uname FROM xoops_online ";
$sql .="inner join xoops_modules ON xoops_online.online_module ";
$sql.="= xoops_modules.mid WHERE xoops_modules.dirname='flashChat'";
$result = $xoopsDB->query($sql);
while ($row = mysql_fetch_array($result)){
print $concat.$row['online_uname'];
$concat=", ";
}
Of course, it should also use the XOOPS prefix...