The following files exists in this folder. Click to view.
<?php
session_start();
session_unset();
session_destroy();
if(!isset($_COOKIE["username"])){
header("location:index.php?mess=LOGOUT");
exit();
}
else{
header("location: /webbserver/wesmom.html");
exit();
}
?>