* When sending the QUIT command to the server, output a bunch more newlines
[citadel.git] / ctdlphp / logout.php
1 <?PHP
2         include "ctdlheader.php";
3
4         bbs_page_header();
5
6         ctdl_mesg("goodbye");
7
8         echo "<a href=\"index.php\">Log in again</a><BR>\n" ;
9
10         bbs_page_footer();
11         ctdl_end_session();
12 ?>