<?php
#logout.php -- removes session variable 'id'
session_start();
$_SESSION['id'] = '';
$_SESSION['login'] = '';
include('public.inc');
include_once ('header_edit.php');
$db = public_db_connect();?>
<style>
body{background-image: none;}
#body{background-image: none;}</style>
<h4 style="margin-left:10px;">You have successfully logged out. <a href="login.php">Click here to log back in.</a></h4>
<div style="clear:both;"></div>
</div>
</div>
<div id="clear"></div>
<?php
include_once ('footer_bohemia.php');
?>