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