<?php
//-------------------------------------------------------------------------------------
// Micro Bucky
// Mark Moore
// license: MIT License
// website: http://buckycomputing.net/
//
// admin/actions/logout.php
//-------------------------------------------------------------------------------------
session_start();
session_unset();
session_destroy();
header("Location: ../index.php");
?>