<?php
/*****
logout.php:
This file logs a user out.

author: jez hancock
email: munk@munk.me.uk
date: 15/10/2002
*****/
include_once("config.php");

// Check user logged in already:
checkLoggedIn("yes");

// Log user out:
flushMemberSession();

// Redirect:
header("Location: login.php");
?>