* Reduced iconbar button size to 90% because it looked obtuse on a smaller screen
[citadel.git] / ctdlphp / readmsgs.php
blob1ea74c5ed1cb48bf6e2903b75ca1bc29c6646560
1 <?PHP
2 include "ctdlheader.php";
3 bbs_page_header();
5 list($num_msgs, $response, $msgs) = ctdl_msgs($_REQUEST["mode"],
6 $_REQUEST["count"] );
8 echo "num_msgs: " . $num_msgs . "<BR>\n" ;
9 echo "response: " . htmlspecialchars($response) . "<BR>\n" ;
11 if ($num_msgs > 0) foreach ($msgs as $msgnum) {
12 display_message($msgnum);
17 <BR>
18 <a href="welcome.php">Page One</a><BR>
19 <a href="page3.php">Page Three</a><BR>
21 <?PHP
22 bbs_page_footer();