Just a block for php-nuke that shows what members are in your php x7Chat. It lists the names of all people in the chat system. I didn't see one on here, thought since I worked one out I'd provide for others. Enjoy
<?php
if (eregi("block-Chat.php", $_SERVER['PHP_SELF'])) {
Header("Location: index.php");
die();
}
global $prefix, $db, $sitename;
$exptime = time()-5;
$result = $db->sql_query("SELECT name FROM x7chat2_online WHERE invisible<>'1' AND time>'$exptime' ORDER BY time DESC LIMIT 10");
$content = "<center><b>User(s) Online</b></center><br>";
while ($row = $db->sql_fetchrow($result)) {
$name = $row['name'];
{
$content .= "<center>$name<br></center>";
}
}
$content .= "<center><a href=\"Enter the link you want here\"><br><b><u>Join Chat</u></b></a></center>";
?>