<?PHP
//Filename : logout.php
//Description : set "valid_login" to false, return user to index.
//Author : Marty
//Last modified : 2006.12.20
session_start();
$_SESSION[valid_login] = "false";
header("Location:../index.php");
exit;
?>