* Fixed an error in the template that was causing the 'c_rbl_at_greeting' field to...
[citadel.git] / ctdlphp / goto.php
blob61f2bd5fae0acb0a64d263571206e7383669ca08
1 <?PHP
2 include "ctdlheader.php";
3 bbs_page_header();
5 ctdl_goto($_REQUEST["towhere"]);
7 echo "You are now in: ", htmlspecialchars($_SESSION["room"]) , "<BR>\n";
8 ?>
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>
15 <?PHP
16 bbs_page_footer();