Logout Form

CODE (There is no display for this page)

<?php
//clear the cookies set up during login or any other time on the website
setcookie("user", '');
//use the header command to send the user back to the login page to gain access
header('LOGIN PAGE.php?return=2');//include a variable to be read by the login form to acknowledge a successful logout.
?>