]> code.citadel.org Git - citadel.git/blobdiff - ctdlphp/goto.php
* Added a room list function to the library
[citadel.git] / ctdlphp / goto.php
diff --git a/ctdlphp/goto.php b/ctdlphp/goto.php
new file mode 100644 (file)
index 0000000..64d5f96
--- /dev/null
@@ -0,0 +1,15 @@
+<?PHP
+       include "ctdlheader.php";
+       bbs_page_header();
+
+       ctdl_goto($_REQUEST["towhere"]);
+
+       echo "You are now in: ", htmlspecialchars($_SESSION["room"]) , "<BR>\n";
+?>
+
+<a href="welcome.php">Page One</a><BR>
+<a href="page3.php">Page Three</a><BR>
+
+<?PHP
+       bbs_page_footer();
+?>