Added a comma after each msgnum exported. The parser was globbing them all together...
[citadel.git] / ctdlphp / goto.php
1 <?PHP
2         include "ctdlheader.php";
3         bbs_page_header();
4
5         ctdl_goto($_REQUEST["towhere"]);
6
7         echo "You are now in: ", htmlspecialchars($_SESSION["room"]) , "<BR>\n";
8 ?>
9
10 <a href="readmsgs.php?mode=new&count=0">Read new messages</a><BR>
11 <a href="readmsgs.php?mode=all&count=0">Read all messages</a><BR>
12 <a href="welcome.php">Page One</a><BR>
13 <a href="page3.php">Page Three</a><BR>
14
15 <?PHP
16         bbs_page_footer();
17 ?>