Added a comma after each msgnum exported. The parser was globbing them all together...
[citadel.git] / ctdlphp / who.php
index 6d5295f23a6fa3d7bc5b04309579473a6bc219cd..8f0bf9f3de85ebbcffb004dd72c2bf7f5ebd8690 100644 (file)
@@ -1,17 +1,17 @@
 <?PHP
 
-       // This is an example of the use of ctdl_rwho() to display the
-       // list of users currently logged in.
-
        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();
 
@@ -27,6 +27,7 @@
 
 ?>
 
+<BR>Sample links<BR>
 <a href="welcome.php">Page One</a><BR>
 <a href="page3.php">Page Three</a><BR>