intranet-apei/logout.php

5 lines
80 B
PHP
Raw Normal View History

2026-03-10 09:37:35 +00:00
<?php
session_start();
session_destroy();
header('location: index.php');
exit();