Added a comma after each msgnum exported. The parser was globbing them all together...
[citadel.git] / ctdlphp / who.php
index 019354a33252035e35c50dd4510c729ea1533e32..8f0bf9f3de85ebbcffb004dd72c2bf7f5ebd8690 100644 (file)
@@ -1,13 +1,17 @@
 <?PHP
+
        include "ctdlheader.php";
        bbs_page_header();
 
-       echo "<TABLE border=1>";
-       echo "<TR>";
-       echo "<TD><B>User</B></TD>";
-       echo "<TD><B>Room</B></TD>";
-       echo "<TD><B>Host</B></TD>";
-       echo "</TR>";
+       echo    "This is an example of the use of ctdl_rwho() to display " .
+               "the list of users currently logged in.<BR><BR>\n" ;
+
+       echo    "<TABLE border=1>" .
+               "<TR>" .
+               "<TD><B>User</B></TD>" .
+               "<TD><B>Room</B></TD>" .
+               "<TD><B>Host</B></TD>" .
+               "</TR>" ;
 
        list($num_users, $wholist) = ctdl_rwho();
 
@@ -23,6 +27,7 @@
 
 ?>
 
+<BR>Sample links<BR>
 <a href="welcome.php">Page One</a><BR>
 <a href="page3.php">Page Three</a><BR>