lampuotomatis/resources/views/admin/logout.php

8 lines
102 B
PHP

<?php
session_start();
session_unset();
session_destroy();
header("Location: index.php");
exit();
?>