Page MenuHomec4science

logout.php
No OneTemporary

File Metadata

Created
Wed, Dec 25, 22:07

logout.php

<?php
session_start();
$_SESSION = array();
session_destroy();
header('Location: index.php');
exit;

Event Timeline