*** empty log message ***
[citadel.git] / ctdlphp / ctdlheader.php
1 <?PHP
2
3 include "ctdlsession.php";
4 include "ctdlprotocol.php";
5
6 function bbs_page_header() {
7
8         global $session;
9
10         establish_citadel_session();
11
12
13         echo <<<LITERAL
14
15 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
16 <html>
17 <head>
18         <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
19         <meta name="Description" content="Citadel BBS">
20         <meta name="Keywords" content="citadel,bbs">
21         <meta name="MSSmartTagsPreventParsing" content="TRUE">
22         <title>FIXME NAME BBS</title>
23 </head>
24
25 <body
26         text="#000000"
27         bgcolor="#FFFFFF"
28         link="#0000FF"
29         vlink="#990066"
30         alink="#DD0000"
31 >
32
33 LITERAL;
34
35         echo "Your session ID is ", $session, "<BR>\n";
36         echo "<A HREF=\"logout.php\">Log out</A><HR>";
37         // flush();
38         // test_for_echo();
39 }
40
41
42 function bbs_page_footer() {
43         echo "<HR>";
44         echo "Powered by Citadel.  And a few cups of coffee.<BR>\n";
45         echo "</BODY></HTML>\n";
46 }
47
48 ?>